blob: cee4f69f8619c67d08c3bdcac036ca96f874d30e (
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
|
#!/sbin/openrc-run
description="Remote mail retrieval and forwarding"
pidfile=/var/run/fetchmail/fetchmail.pid
depend() {
need net
after firewall
use mta
}
checkconfig() {
if [ ! -f "${CFGFILE}" ]; then
eerror "Configuration file ${CFGFILE} not found"
return 1
fi
}
start() {
checkconfig || return 1
checkpath -d ${pidfile%/*} -o fetchmail
ebegin "Starting fetchmail"
start-stop-daemon --start --quiet \
--user fetchmail --exec /usr/bin/fetchmail \
-- -f "${CFGFILE}" ${FETCHMAIL_OPTS} \
--pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
eend ${?}
}
stop() {
ebegin "Stopping fetchmail"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend ${?}
}
|