]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/sendmail
This commit was generated by cvs2svn to compensate for changes in r125820,
[FreeBSD/FreeBSD.git] / etc / rc.d / sendmail
1 #!/bin/sh
2 #
3 # $NetBSD: sendmail,v 1.14 2002/02/12 01:26:36 lukem Exp $
4 # $FreeBSD$
5 #
6
7 # PROVIDE: mail
8 # REQUIRE: LOGIN
9 # KEYWORD: FreeBSD
10 #       we make mail start late, so that things like .forward's are not
11 #       processed until the system is fully operational
12
13 # XXX - Get together with sendmail mantainer to figure out how to
14 #       better handle SENDMAIL_ENABLE and 3rd party MTAs.
15 #
16 . /etc/rc.subr
17
18 name="sendmail"
19 rcvar=`set_rcvar`
20 required_files="/etc/mail/${name}.cf"
21 command=${sendmail_program:-/usr/sbin/sendmail}
22 pidfile=${sendmail_pidfile:-/var/run/sendmail.pid}
23
24 load_rc_config $name
25
26 case ${sendmail_enable} in
27 [Nn][Oo][Nn][Ee])
28         sendmail_enable="NO"
29         sendmail_submit_enable="NO"
30         sendmail_outbound_enable="NO"
31         sendmail_msp_queue_enable="NO"
32         ;;
33 esac
34
35 sendmail_precmd()
36 {
37         # Die if there's pre-8.10 custom configuration file.  This check is
38         # mandatory for smooth upgrade.  See NetBSD PR 10100 for details.
39         #
40         if checkyesno ${rcvar} && [ -f "/etc/${name}.cf" ]; then
41                 if ! cmp -s "/etc/mail/${name}.cf" "/etc/${name}.cf"; then
42                         warn \
43     "${name} was not started; you have multiple copies of sendmail.cf."
44                         return 1
45                 fi
46         fi
47
48         # check modifications on /etc/mail/aliases
49         if [ -f "/etc/mail/aliases.db" ]; then
50                 if [ "/etc/mail/aliases" -nt "/etc/mail/aliases.db" ]; then
51                         echo \
52             "${name}: /etc/mail/aliases newer than /etc/mail/aliases.db, regenerating"
53                         /usr/bin/newaliases
54                 fi
55         else
56                 echo \
57             "${name}: /etc/mail/aliases.db not present, generating"
58                         /usr/bin/newaliases
59         fi
60
61         # check couple of common db files, too
62         for f in genericstable virtusertable domaintable mailertable; do
63                 if [ -r "/etc/mail/$f" -a \
64                     "/etc/mail/$f" -nt "/etc/mail/$f.db" ]; then
65                         echo \
66     "${name}: /etc/mail/$f newer than /etc/mail/$f.db, regenerating"
67                         /usr/sbin/makemap hash /etc/mail/$f < /etc/mail/$f
68                 fi
69         done
70 }
71
72 run_rc_command "$1"
73
74 required_files=
75
76 if ! checkyesno sendmail_enable; then
77         name="sendmail_submit"
78         rcvar=`set_rcvar`
79         start_cmd="${command} ${sendmail_submit_flags}"
80         run_rc_command "$1"
81 fi
82
83 if ! checkyesno sendmail_outbound_enable; then
84         name="sendmail_outbound"
85         rcvar=`set_rcvar`
86         start_cmd="${command} ${sendmail_outbound_flags}"
87         run_rc_command "$1"
88 fi
89
90 name="sendmail_clientmqueue"
91 rcvar="sendmail_msp_queue_enable"
92 start_cmd="${command} ${sendmail_msp_queue_flags}"
93 pidfile="${sendmail_mspq_pidfile:-/var/spool/clientmqueue/sm-client.pid}"
94 required_files="/etc/mail/submit.cf"
95 run_rc_command "$1"