4 # Copyright (c) 2002 Gregory Neil Shapiro. All Rights Reserved.
5 # Copyright (c) 2000, 2002 The FreeBSD Project
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions
11 # 1. Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
13 # 2. Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in the
15 # documentation and/or other materials provided with the distribution.
17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 # $FreeBSD: src/etc/rc.sendmail,v 1.3.2.1 2002/04/24 17:28:08 gshapiro Exp $
30 # $DragonFly: src/etc/rc.sendmail,v 1.3 2005/07/25 00:24:31 gshapiro Exp $
33 # This script is used by /etc/rc at boot time to start sendmail. It
34 # is meant to be sendmail specific and not a generic script for all
35 # MTAs. It is only called by /etc/rc if the rc.conf mta_start_script is
36 # set to /etc/rc.sendmail. This provides the opportunity for other MTAs
37 # to provide their own startup script.
39 # The script is also used by /etc/mail/Makefile to enable the
40 # start/stop/restart targets.
42 # The source for the script can be found in src/etc/sendmail/rc.sendmail.
44 if [ -r /etc
/defaults
/rc.conf
]; then
45 .
/etc
/defaults
/rc.conf
47 elif [ -r /etc
/rc.conf
]; then
52 sendmail_program
=${sendmail_program:-/usr/sbin/sendmail}
54 # The pid is used to stop and restart the running daemon(s).
55 sendmail_pidfile
=${sendmail_pidfile:-/var/run/sendmail.pid}
56 sendmail_mspq_pidfile
=${sendmail_mspq_pidfile:-/var/spool/clientmqueue/sm-client.pid}
60 case ${sendmail_enable} in
65 ${sendmail_program} ${sendmail_flags}
68 case ${sendmail_submit_enable} in
70 echo -n ' sendmail-submit'
71 ${sendmail_program} ${sendmail_submit_flags}
74 case ${sendmail_outbound_enable} in
76 echo -n ' sendmail-outbound'
77 ${sendmail_program} ${sendmail_outbound_flags}
88 # Check to make sure we are configured to start an MTA
89 case ${sendmail_enable} in
96 case ${sendmail_submit_enable} in
100 case ${sendmail_outbound_enable} in
112 if [ -r ${sendmail_pidfile} ]; then
114 kill -TERM `head -1 ${sendmail_pidfile}`
116 echo "$0: stop-mta: ${sendmail_pidfile} not found"
122 # Check to make sure we are configured to start an MTA
123 case ${sendmail_enable} in
130 case ${sendmail_submit_enable} in
134 case ${sendmail_outbound_enable} in
146 if [ -r ${sendmail_pidfile} ]; then
148 kill -HUP `head -1 ${sendmail_pidfile}`
150 echo "$0: restart-mta: ${sendmail_pidfile} not found"
156 case ${sendmail_enable} in
160 if [ -r /etc
/mail
/submit.cf
]; then
161 case ${sendmail_msp_queue_enable} in
163 echo -n ' sendmail-clientmqueue'
164 ${sendmail_program} ${sendmail_msp_queue_flags}
174 # Check to make sure we are configured to start an MSP queue runner
175 case ${sendmail_enable} in
180 if [ -r /etc
/mail
/submit.cf
]; then
181 case ${sendmail_msp_queue_enable} in
192 if [ -r ${sendmail_mspq_pidfile} ]; then
193 echo -n ' sendmail-clientmqueue'
194 kill -TERM `head -1 ${sendmail_mspq_pidfile}`
196 echo "$0: stop-mspq: ${sendmail_mspq_pidfile} not found"
202 # Check to make sure we are configured to start an MSP queue runner
203 case ${sendmail_enable} in
208 if [ -r /etc
/mail
/submit.cf
]; then
209 case ${sendmail_msp_queue_enable} in
220 if [ -r ${sendmail_mspq_pidfile} ]; then
221 echo -n ' sendmail-clientmqueue'
222 kill -HUP `head -1 ${sendmail_mspq_pidfile}`
224 echo "$0: restart-mspq: ${sendmail_mspq_pidfile} not found"
228 # If no argument is given, assume we are being called at boot time.
272 echo "Usage: `basename $0` {start|stop|restart}" >&2
273 echo " `basename $0` {start-mta|stop-mta|restart-mta}" >&2
274 echo " `basename $0` {start-mspq|stop-mspq|restart-mspq}" >&2