head 1.4; access; symbols; locks; strict; comment @# @; 1.4 date 2003.03.23.00.09.51; author swiergot; state Exp; branches; next 1.3; 1.3 date 2003.03.22.23.19.50; author swiergot; state Exp; branches; next 1.2; 1.2 date 2003.03.22.16.51.47; author swiergot; state Exp; branches; next 1.1; 1.1 date 2003.03.20.16.39.37; author swiergot; state Exp; branches; next ; desc @@ 1.4 log @- Fixed smtpd-*.conf files. Now SMTP AUTH should finally work. @ text @#!/bin/sh # Start/stop/restart postfix: postfix_start() { if [ -x /usr/sbin/postfix ]; then echo "Starting Postfix..." /usr/sbin/postfix start fi } postfix_stop() { if [ -x /usr/sbin/postfix ]; then echo "Stopping Postfix..." /usr/sbin/postfix stop fi } postfix_restart() { if [ -x /usr/sbin/postfix ]; then echo "Restarting Postfix..." /usr/sbin/postfix reload fi } postfix_check() { if [ -x /usr/sbin/postfix ]; then /usr/sbin/postfix check fi } case "$1" in 'start') postfix_start ;; 'stop') postfix_stop ;; 'restart') postfix_restart ;; 'check') postfix_check ;; *) postfix_start esac @ 1.3 log @- Fixed sasl.conf. @ text @@ 1.2 log @- Fixed SASL patches. @ text @@ 1.1 log @- Initial release. - Version 2.0.7. @ text @@ .