Pre-2.0 release, MFC some driver fixes related to interrupt management.
[dragonfly.git] / etc / rc.sendmail
blob02bb89d7108e685aaae21134ed90d7eee0067c00
1 #!/bin/sh
4 # Copyright (c) 2002 Gregory Neil Shapiro. All Rights Reserved.
5 # Copyright (c) 2000, 2002 The FreeBSD Project
6 # All rights reserved.
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions
10 # are met:
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
27 # SUCH DAMAGE.
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
46 source_rc_confs
47 elif [ -r /etc/rc.conf ]; then
48 . /etc/rc.conf
51 # The sendmail binary
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}
58 start_mta()
60 case ${sendmail_enable} in
61 [Nn][Oo][Nn][Ee])
63 [Yy][Ee][Ss])
64 echo -n ' sendmail'
65 ${sendmail_program} ${sendmail_flags}
68 case ${sendmail_submit_enable} in
69 [Yy][Ee][Ss])
70 echo -n ' sendmail-submit'
71 ${sendmail_program} ${sendmail_submit_flags}
74 case ${sendmail_outbound_enable} in
75 [Yy][Ee][Ss])
76 echo -n ' sendmail-outbound'
77 ${sendmail_program} ${sendmail_outbound_flags}
79 esac
81 esac
83 esac
86 stop_mta()
88 # Check to make sure we are configured to start an MTA
89 case ${sendmail_enable} in
90 [Nn][Oo][Nn][Ee])
91 return
93 [Yy][Ee][Ss])
96 case ${sendmail_submit_enable} in
97 [Yy][Ee][Ss])
100 case ${sendmail_outbound_enable} in
101 [Yy][Ee][Ss])
104 return
106 esac
108 esac
110 esac
112 if [ -r ${sendmail_pidfile} ]; then
113 echo -n ' sendmail'
114 kill -TERM `head -1 ${sendmail_pidfile}`
115 else
116 echo "$0: stop-mta: ${sendmail_pidfile} not found"
120 restart_mta()
122 # Check to make sure we are configured to start an MTA
123 case ${sendmail_enable} in
124 [Nn][Oo][Nn][Ee])
125 return
127 [Yy][Ee][Ss])
130 case ${sendmail_submit_enable} in
131 [Yy][Ee][Ss])
134 case ${sendmail_outbound_enable} in
135 [Yy][Ee][Ss])
138 return
140 esac
142 esac
144 esac
146 if [ -r ${sendmail_pidfile} ]; then
147 echo -n ' sendmail'
148 kill -HUP `head -1 ${sendmail_pidfile}`
149 else
150 echo "$0: restart-mta: ${sendmail_pidfile} not found"
154 start_mspq()
156 case ${sendmail_enable} in
157 [Nn][Oo][Nn][Ee])
160 if [ -r /etc/mail/submit.cf ]; then
161 case ${sendmail_msp_queue_enable} in
162 [Yy][Ee][Ss])
163 echo -n ' sendmail-clientmqueue'
164 ${sendmail_program} ${sendmail_msp_queue_flags}
166 esac
169 esac
172 stop_mspq()
174 # Check to make sure we are configured to start an MSP queue runner
175 case ${sendmail_enable} in
176 [Nn][Oo][Nn][Ee])
177 return
180 if [ -r /etc/mail/submit.cf ]; then
181 case ${sendmail_msp_queue_enable} in
182 [Yy][Ee][Ss])
185 return
187 esac
190 esac
192 if [ -r ${sendmail_mspq_pidfile} ]; then
193 echo -n ' sendmail-clientmqueue'
194 kill -TERM `head -1 ${sendmail_mspq_pidfile}`
195 else
196 echo "$0: stop-mspq: ${sendmail_mspq_pidfile} not found"
200 restart_mspq()
202 # Check to make sure we are configured to start an MSP queue runner
203 case ${sendmail_enable} in
204 [Nn][Oo][Nn][Ee])
205 return
208 if [ -r /etc/mail/submit.cf ]; then
209 case ${sendmail_msp_queue_enable} in
210 [Yy][Ee][Ss])
213 return
215 esac
218 esac
220 if [ -r ${sendmail_mspq_pidfile} ]; then
221 echo -n ' sendmail-clientmqueue'
222 kill -HUP `head -1 ${sendmail_mspq_pidfile}`
223 else
224 echo "$0: restart-mspq: ${sendmail_mspq_pidfile} not found"
228 # If no argument is given, assume we are being called at boot time.
229 _action=${1:-start}
231 case ${_action} in
232 start)
233 start_mta
234 start_mspq
237 stop)
238 stop_mta
239 stop_mspq
242 restart)
243 restart_mta
244 restart_mspq
247 start-mta)
248 start_mta
251 stop-mta)
252 stop_mta
255 restart-mta)
256 restart_mta
259 start-mspq)
260 start_mspq
263 stop-mspq)
264 stop_mspq
267 restart-mspq)
268 restart_mspq
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
275 exit 64
278 esac
279 exit 0