[Postfixbuch-users] postgrey: Text ändern

Uwe Driessen driessen at fblan.de
Mo Nov 10 19:28:00 CET 2008


On Behalf Of Andre Tann
> 
> Jan P. Kessler, Montag, 10. November 2008 15:35:
> 
> >             --greylist-text="Please try again later" \
> [...]
> > Und das ganze funktioniert so wie es soll. postgrey v1.31.
> >
> > Was mach' ich nur richtig?! ;)
> 
> Tja, gute Frage. Wenn ich das so mache, dann funktioniert es auch
> nicht. Ich habe da dieselben Probleme wie Peer, und helfe mir mit
> Underscores. Aber_das_ist_auch_nicht_schön...
> 
> --
> Andre Tann

Welche Distribution setzt Ihr denn ein 

Debian Lenny mit 

postgrey --version
postgrey 1.31

und es funzt einwandfrei

Startfile mal überprüft ?

#! /bin/sh
#
# postgrey      start/stop the postgrey greylisting deamon for postfix

set -e

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/postgrey
NAME=postgrey
DESC="postfix greylisting daemon"

PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

# Gracefully exit if the package has been removed.
test -x $DAEMON || exit 0

# Read config file if it is present.
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

case "$1" in
  start)
        echo -n "Starting $DESC: $NAME"
        start-stop-daemon --start --quiet --pidfile $PIDFILE \
                --exec $DAEMON -- $POSTGREY_OPTS "$POSTGREY_TEXT_OPT"
        echo "."
        ;;
  stop)
        echo -n "Stopping $DESC: $NAME"
        start-stop-daemon --stop --quiet --pidfile $PIDFILE --oknodo
        rm -f $PIDFILE
        echo "."
        ;;
  reload|force-reload)
        echo -n "Reloading $DESC configuration..."
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE
        echo "done."
        ;;
  restart)
        echo -n "Restarting $DESC: $NAME"
        start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
        rm -f $PIDFILE
        sleep 1
        start-stop-daemon --start --quiet --pidfile $PIDFILE \
                --exec $DAEMON -- $POSTGREY_OPTS  "$POSTGREY_TEXT_OPT"
        echo "."
        ;;
  *)
        echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
        exit 1
        ;;
esac

exit 0


Mit freundlichen Grüßen

Drießen

-- 
Software & Computer
Uwe Drießen
Lembergstraße 33
67824 Feilbingert
Tel.: +49 06708 / 660045   Fax: +49 06708 / 661397





Mehr Informationen über die Mailingliste Postfixbuch-users