aports/community/fetchmail/fetchmail.initd
Natanael Copa 746f402cbf community/fetchmail: move from main
fetchmailconf depends on python3-tkinter which is in community
2021-01-12 11:19:55 +00:00

38 lines
778 B
Plaintext

#!/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 ${?}
}