21 lines
746 B
Bash
21 lines
746 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: postfix-enable,v 1.3 2002/04/19 21:11:29 jakob Exp $
|
|
|
|
if [ -f /etc/mailer.conf.postfix ]; then
|
|
if [ -f /etc/mailer.conf ]; then
|
|
mv -f /etc/mailer.conf /etc/mailer.conf.pre-postfix
|
|
echo "old /etc/mailer.conf saved as /etc/mailer.conf.pre-postfix"
|
|
fi
|
|
mv -f /etc/mailer.conf.postfix /etc/mailer.conf
|
|
echo "postfix /etc/mailer.conf enabled"
|
|
echo ""
|
|
echo "NOTE: do not forget to add sendmail_flags=\"-bd -q30m\" to"
|
|
echo " /etc/rc.conf.local to startup postfix correctly."
|
|
echo ""
|
|
echo "NOTE: do not forget to remove the \"sendmail clientmqueue runner\""
|
|
echo " from root's crontab."
|
|
else
|
|
echo "can't find /etc/mailer.conf.postfix, postfix not enabled"
|
|
fi
|