2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-05-03 14:55:19 +04:00
|
|
|
# $NetBSD: sendmail,v 1.3 2000/05/03 10:55:20 itojun Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: mail
|
2000-03-13 07:03:52 +03:00
|
|
|
# REQUIRE: LOGIN
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
# we could do this, but make mail start late, so that things like
|
|
|
|
# .forward's are not processed until the system is fully operational
|
2000-03-13 07:03:52 +03:00
|
|
|
## REQUIRE: DAEMON
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
. /etc/rc.conf
|
|
|
|
|
|
|
|
name="sendmail"
|
|
|
|
command="/usr/sbin/${name}"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
2000-05-03 14:55:19 +04:00
|
|
|
if [ -f "/etc/${name}.cf" ]; then
|
|
|
|
required_files="/etc/${name}.cf"
|
|
|
|
command_args="-C${required_files}"
|
|
|
|
warn "using ${required_files}."
|
|
|
|
warn "default location was changed, move ${required_files} to /etc/mail."
|
|
|
|
else
|
|
|
|
required_files="/etc/mail/${name}.cf"
|
|
|
|
fi
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
run_rc_command "$1"
|