blob: 4c6414c2a5a40bfc4033c5e9a39bc5f5737ae7e8 (
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
|
#!/sbin/runscript
#
PIDFILE="/var/run/dbmail/timsieved.pid"
depend() {
need net
use mysql
use pgsql
after mta
}
checkconfig() checkconfig() {
if [ ! -e "/etc/dbmail.conf" ]; then
eerror "You need to create apropriate config"
eerror "/etc/dbmail.conf"
return 1
fi
# Avoid using root's TMPDIR
unset TMPDIR
}
start() {
checkconfig && \
ebegin "Starting DBMail SIEVE daemon"
start-stop-daemon --start --quiet \
--exec /usr/sbin/dbmail-timsieved \
-- -p ${PIDFILE} -f /etc/dbmail.conf 2>&1
eend $?
}
stop() {
ebegin "Stopping DBMail SIEVE daemon"
start-stop-daemon --stop --quiet --retry 5 \
--pidfile ${PIDFILE}
eend $?
}
|