blob: 73286c4e7083af4d60b2e308411ba47cd09594c0 (
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
|
#!/sbin/runscript
pidfile=/var/run/fetchmail/fetchmail.pid
depend() {
need net
after firewall
use mta
}
checkconfig() {
if [ ! -f /etc/fetchmailrc ]; then
eerror "Configuration file /etc/fetchmailrc not found"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting fetchmail"
start-stop-daemon --start --quiet \
--chuid fetchmail --exec /usr/bin/fetchmail \
-- -d ${polling_period:-300} -f /etc/fetchmailrc \
--pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
eend ${?}
}
stop() {
ebegin "Stopping fetchmail"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend ${?}
}
|