2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-02-12 04:26:36 +03:00
|
|
|
# $NetBSD: sendmail,v 1.14 2002/02/12 01:26:36 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: mail
|
2000-03-13 07:03:52 +03:00
|
|
|
# REQUIRE: LOGIN
|
2002-02-12 04:26:36 +03:00
|
|
|
# we make mail start late, so that things like .forward's are not
|
|
|
|
# processed until the system is fully operational
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="sendmail"
|
2000-09-19 17:04:38 +04:00
|
|
|
rcvar=$name
|
2000-03-10 14:53:23 +03:00
|
|
|
command="/usr/sbin/${name}"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
2000-05-03 21:03:10 +04:00
|
|
|
required_files="/etc/mail/${name}.cf"
|
2000-06-13 19:53:03 +04:00
|
|
|
start_precmd="sendmail_precmd"
|
2000-05-03 21:03:10 +04:00
|
|
|
|
2000-06-13 19:53:03 +04:00
|
|
|
sendmail_precmd()
|
|
|
|
{
|
|
|
|
# Die if there's pre-8.10 custom configuration file. This check is
|
|
|
|
# mandatory for smooth upgrade. See NetBSD PR 10100 for details.
|
|
|
|
#
|
|
|
|
if checkyesno sendmail && [ -f "/etc/${name}.cf" ]; then
|
|
|
|
if ! cmp -s "/etc/mail/${name}.cf" "/etc/${name}.cf"; then
|
2000-09-19 17:04:38 +04:00
|
|
|
warn \
|
|
|
|
"${name} was not started; you have multiple copies of sendmail.cf."
|
2000-06-13 19:53:03 +04:00
|
|
|
return 1
|
|
|
|
fi
|
2000-06-04 12:33:58 +04:00
|
|
|
fi
|
2000-09-15 01:03:17 +04:00
|
|
|
|
|
|
|
# check modifications on /etc/mail/aliases
|
2000-12-18 10:56:41 +03:00
|
|
|
if [ -f "/etc/mail/aliases.db" ]; then
|
|
|
|
if [ "/etc/mail/aliases" -nt "/etc/mail/aliases.db" ]; then
|
|
|
|
echo \
|
|
|
|
"${name}: /etc/mail/aliases newer than /etc/mail/aliases.db, regenerating"
|
|
|
|
/usr/bin/newaliases
|
|
|
|
fi
|
|
|
|
else
|
2000-09-19 17:04:38 +04:00
|
|
|
echo \
|
2000-12-18 10:56:41 +03:00
|
|
|
"${name}: /etc/mail/aliases.db not present, generating"
|
|
|
|
/usr/bin/newaliases
|
2000-09-15 01:03:17 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# check couple of common db files, too
|
|
|
|
for f in genericstable virtusertable domaintable mailertable; do
|
2002-02-12 04:26:36 +03:00
|
|
|
if [ -r "/etc/mail/$f" -a \
|
|
|
|
"/etc/mail/$f" -nt "/etc/mail/$f.db" ]; then
|
2000-09-19 17:04:38 +04:00
|
|
|
echo \
|
|
|
|
"${name}: /etc/mail/$f newer than /etc/mail/$f.db, regenerating"
|
2000-09-15 01:03:17 +04:00
|
|
|
/usr/sbin/makemap hash /etc/mail/$f < /etc/mail/$f
|
|
|
|
fi
|
|
|
|
done
|
2000-06-13 19:53:03 +04:00
|
|
|
}
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2000-06-13 19:53:03 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|