summaryrefslogtreecommitdiff
blob: f3f45b5029f30ebcb0b54c669912649c90fe8141 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/sbin/runscript
#

PIDFILE="/var/run/dbmail-pop3d.pid"

depend() {
	need net
	use mysql
	use pgsql
	after mta
}

checkconfig() {
	if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
		eerror "You need to create apropriate config"
		eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
		return 1
	fi
	# Avoid using root's TMPDIR
	unset TMPDIR
}


start() {
	checkconfig && \
	ebegin "Starting DBMail POP3 daemon"
	    start-stop-daemon --start --quiet \
		--exec /usr/sbin/dbmail-pop3d \
		--name dbmail-pop3d \
		-- -f /etc/dbmail/dbmail.conf 2>&1
	eend $?
}	

stop() {
	ebegin "Stopping DBMail POP3 daemon"
	    start-stop-daemon --stop --quiet --retry 5 \
		--pidfile ${PIDFILE}
	eend $?
}