diff options
Diffstat (limited to 'network/opensmtpd/rc.opensmtpd')
-rw-r--r-- | network/opensmtpd/rc.opensmtpd | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/network/opensmtpd/rc.opensmtpd b/network/opensmtpd/rc.opensmtpd new file mode 100644 index 0000000000..fd4f9956f3 --- /dev/null +++ b/network/opensmtpd/rc.opensmtpd @@ -0,0 +1,34 @@ +#!/bin/sh +# Start/stop/restart opensmtpd + +smtpd_start() { + if [ -x /usr/sbin/smtpd ]; then + echo "Starting OpenSMTPD: /usr/sbin/smtpd" + smtpd # not using full path to work around a logging bug for now + fi +} + +smtpd_stop() { + smtpctl stop +} + +# Restart smtpd: +smtpd_restart() { + smtpd_stop + sleep 1 + smtpd_start +} + +case "$1" in +'start') + smtpd_start + ;; +'stop') + smtpd_stop + ;; +'restart') + smtpd_restart + ;; +*) + echo "usage $0 start|stop|restart" +esac |