openbsd-ports/mail/postfix/stable/files/postfix-disable
2008-02-01 16:37:52 +00:00

17 lines
489 B
Bash

#!/bin/sh
#
# $OpenBSD: postfix-disable,v 1.5 2008/02/01 16:37:53 jakob Exp $
if [ ! -f /etc/mailer.conf.pre-postfix ]; then
echo "can't find /etc/mailer.conf.pre-postfix, postfix not disabled"
exit 1
fi
if [ -f /etc/mailer.conf ]; then
mv -f /etc/mailer.conf /etc/mailer.conf.postfix
mv -f /etc/mailer.conf.pre-postfix /etc/mailer.conf
echo "postfix mailer.conf disabled, old mailer.conf enabled"
else
echo "can't find /etc/mailer.conf, postfix not disabled"
fi