summaryrefslogtreecommitdiff
blob: a977375b56c3c4394bf8ad881ec804c256a0c535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	need net
	use dns logger antivirus
	provide mta
}

start() {
	ebegin "Starting sendmail"
	/usr/bin/newaliases > /dev/null 2>&1
	(cd /var/spool/mqueue; rm -f xf*)
	/usr/sbin/sendmail ${SENDMAIL_OPTS} > /dev/null 2>&1
	/usr/sbin/sendmail ${CLIENTMQUEUE_OPTS} > /dev/null 2>&1
	eend $?
}

stop() {
	ebegin "Stopping sendmail"
	kill ${KILL_OPTS} `head -n 1 /var/run/sendmail.pid`
	kill ${KILL_OPTS} `head -n 1 /var/spool/clientmqueue/sm-client.pid`
	eend $?
}