#!/bin/sh # # chkconfig: 345 91 35 # description: Starts and stops the fetchmail daemon used to retrive mail \ # via various protocols (such as POP3 and IMAP4). # # config: /etc/fetchmailrc # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. # Get service config - may override defaults [ -f /etc/sysconfig/fetchmail ] && . /etc/sysconfig/fetchmail # Get network config [ -f /etc/sysconfig/network ] && . /etc/sysconfig/network # Check that networking is up. if is_no "${NETWORKING}"; then msg_Network_Down "fetchmail" exit 1 fi # Check that fetchmailrc exists. [ -f /etc/fetchmailrc ] || exit 0 # See how we were called. case "$1" in start) if [ ! -f /var/lock/subsys/fetchmail ]; then msg_starting "fetchmail" daemon fetchmail -f /etc/fetchmailrc RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fetchmail else msg_Already_Running fetchmail exit 1 fi ;; stop) if [ -f /var/lock/subsys/fetchmail ]; then msg_stopping "fetchmail" killproc fetchmail rm -f /var/lock/subsys/fetchmail >/dev/null 2>&1 else msg_Not_Running "fetchmail" exit 1 fi ;; restart) $0 stop $0 start ;; reload) if [ -f /var/lock/subsys/fetchmail ]; then msg_reloading "fetchmail" busy killproc fetchmail -HUP deltext ok else msg_Not_Running fetchmail exit 1 fi ;; force-reload) # if program allows reloading without stopping $0 reload exit $? # or if it doesn't $0 stop && $0 start exit $? ;; status) status fetchmail exit $? ;; *) msg_Usage "$0 {start|stop|status|restart|reload|force-reload}" exit 1 esac exit $RETVAL