Hallo Leute,
folgendes Problem. Beim starten von Postgrey tut sich nichts.
Ich bekomme auch keine Fehlermeldung. Die Logs habe ich durchschaut aber es ist nichts zu finden.
Wisst ihr vielleicht woran es liegen könnte?
System: Suse 9.3 mit Confixx Premium Edition 1.0.3
Ich benutze das Startscript von - huschi.net
*edit* Auch wenn ich Postgrey ohne das Script starte tut sich nichts.
Lieben Gruß
folgendes Problem. Beim starten von Postgrey tut sich nichts.
Ich bekomme auch keine Fehlermeldung. Die Logs habe ich durchschaut aber es ist nichts zu finden.
Wisst ihr vielleicht woran es liegen könnte?
System: Suse 9.3 mit Confixx Premium Edition 1.0.3
Ich benutze das Startscript von - huschi.net
*edit* Auch wenn ich Postgrey ohne das Script starte tut sich nichts.
Code:
#! /bin/sh
#
# Author: james at p800.info, based on template from source package
# Download from http://www.huschi.net/21_239_de.html
# updates from http://www.michinator.de
#
# /etc/init.d/postgrey
# and its symbolic link
# /usr/sbin/rcpostgrey
#
### BEGIN INIT INFO
# Provides: postgrey
# Required-Start: $postfix
# Required-Stop:
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Description: postgrey - greylisting implementation
### END INIT INFO
. /etc/rc.status
# Determine the base and follow a runlevel link name.
base=${0##*/}
link=${base#*[SK][0-9][0-9]}
EXE=/usr/local/sbin/postgrey
NAME=postgrey
# Force execution if not called by a runlevel directory.
test -x $EXE || exit 0
case "$1" in
start)
echo -n "Starting $NAME "
startproc $EXE -d --inet=60000 --user=postfix --unix=/var/spool/postfix/private/policy
rc_status -v
;;
stop)
echo -n "Shutting down $NAME "
killproc -TERM $EXE
rc_status -v
;;
restart)
$0 stop
$0 start
rc_status
;;
try-restart)
$0 status
if test $? = 0; then
$0 restart
else
rc_reset
fi
rc_status
;;
force-reload)
$0 stop; sleep 1 && $0 start
rc_status
;;
reload)
echo -n "Reload service $NAME "
killproc -HUP $EXE
rc_status -v
;;
status)
echo -n "Checking for $NAME "
checkproc $EXE
rc_status -v
;;
*)
echo "Usage: $0 {start|stop|try-restart|restart|force-reload|reload|status}"
exit 1
esac
rc_exit
Lieben Gruß
Last edited by a moderator: