Comment 20 for bug 56235

Revision history for this message
Angelo (gate-keeper) wrote :

in /etc/init.d/postifx, line 98 need to be changed from: if start-stop-daemon --start --exec ${DAEMON} -- quiet-quick-start; then
into: if start-stop-daemon --start --exec ${DAEMON} start; then

also line 111 from: if ${DAEMON} quiet-stop; then
into: if ${DAEMON} stop; then

This worked for me on ubuntu 8.10 server

angelo