#!/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

# defaults
[ -z "$POLL_INTERVAL" ] && POLL_INTERVAL=300

# 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"

		is_yes $VERBOSE_LOGGING && OPTIONS="-v"

		daemon fetchmail -d "$POLL_INTERVAL" $OPTIONS -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
