You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-mail/fetchmail/files/fetchmail.new

34 lines
685 B

#!/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 \
--user fetchmail --exec /usr/bin/fetchmail \
-- -d ${polling_period} -f /etc/fetchmailrc \
--pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
eend ${?}
}
stop() {
ebegin "Stopping fetchmail"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend ${?}
}