Package: postgrey
Version: 1.35-1
Severity: wishlist
Dear Maintainer,
please change /etc/default/postgrey entry to:
POSTGREY_TEXT="greylisted for %s seconds"
Reason: it is more easy for the sender to see the early retries. Example:
Feb 8 20:45:39 binky postfix/smtpd[28298]: NOQUEUE: reject: RCPT from
o7.email.change.org[50.31.50.129]: 450 4.2.0
<o7.email.change.org[50.31.50.129]>: Client host rejected: greylisted for 114
seconds; from=<--snip--> to=<--snip--> proto=ESMTP helo=<o7.email.change.org>
-- System Information:
Debian Release: 8.0
APT prefers testing-updates
APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
Versions of packages postgrey depends on:
ii adduser 3.113+nmu3
ii debconf [debconf-2.0] 1.5.55
ii libberkeleydb-perl 0.54-2+b1
ii libnet-dns-perl 0.81-2
ii libnet-server-perl 2.008-1
ii perl 5.20.1-5
ii ucf 3.0030
Versions of packages postgrey recommends:
ii libnet-rblclient-perl 0.5-2
ii libparse-syslog-perl 1.10-2
ii postfix 2.11.3-1
postgrey suggests no packages.
-- Configuration Files:
/etc/init.d/postgrey changed:
set -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/postgrey
NAME=postgrey
SSNAME=`echo $DAEMON | cut -c -15`
SSNAME=postgrey
DESC="postfix greylisting daemon"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
test -x $DAEMON || exit 0
. /lib/lsb/init-functions
if [ -r /etc/default/$NAME ]
then
. /etc/default/$NAME
fi
POSTGREY_OPTS="--pidfile=$PIDFILE --daemonize $POSTGREY_OPTS"
if [ -z "$POSTGREY_TEXT" ]; then
POSTGREY_TEXT_OPT=""
else
POSTGREY_TEXT_OPT="--greylist-text=$POSTGREY_TEXT"
fi
ret=0
case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"
if start-stop-daemon --start --oknodo --quiet \
--pidfile $PIDFILE --name $SSNAME \
--startas $DAEMON -- $POSTGREY_OPTS "$POSTGREY_TEXT_OPT"
then
log_end_msg 0
else
ret=$?
log_end_msg 1
fi
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"
if start-stop-daemon --stop --oknodo --quiet \
--pidfile $PIDFILE --name $SSNAME
then
log_end_msg 0
else
ret=$?
log_end_msg 1
fi
rm -f $PIDFILE
;;
reload|force-reload)
log_action_begin_msg "Reloading $DESC configuration..."
if start-stop-daemon --stop --signal 1 --quiet \
--pidfile $PIDFILE
then
log_action_end_msg 0
else
ret=$?
log_action_end_msg 1
fi
;;
restart)
$0 stop
$0 start
ret=$?
;;
status)
status_of_proc -p $PIDFILE $DAEMON "$NAME" 2>/dev/null
ret=$?
;;
*)
echo "Usage: $SCRIPTNAME
{start|stop|restart|reload|force-reload|status}" >&2
exit 1
;;
esac
exit $ret
-- debconf information:
postgrey/1.32-3_changeport:
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]