Viitor_sendmail/etc/init/smtp.conf

17 lines
348 B
Plaintext
Raw Permalink Normal View History

description "sendmail Daemon startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started ifup))
stop on runlevel [016]
console none
script
/sbin/CheckPid /var/run/sendmail.pid
if [ -f /etc/mail/sendmail.cf ]; then
/usr/sbin/sendmail -bD -q30m -om
fi
end script