blob: 30eea5036955efa12dc39ba8b8e15fd53e4819f9 (
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
|
#!/sbin/runscript
depend() {
need net
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 --exec /usr/bin/fetchmail \
--chuid ${USER:-fetchmail}:${GROUP:-fetchmail} \
-- -d ${polling_period} -f /etc/fetchmailrc
eend ${?}
}
stop() {
ebegin "Stopping fetchmail"
start-stop-daemon --stop --quiet --pidfile /var/run/fetchmail.pid
eend ${?}
}
|