summaryrefslogtreecommitdiffstats
path: root/extra/fetchmail/fetchmail.initd
blob: a1ed1ec8371299731fb2b6c73ec50616f0d47424 (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
#!/sbin/runscript

pidfile=/var/run/fetchmail/fetchmail.pid

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 \
		--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 ${?}
}