#!/bin/sh
#
# exim      This shell script takes care of starting and stopping
#               exim.
#
# chkconfig: 2345 80 30
# description: Exim is a Mail Transport Agent, which is the program \
# that moves mail from one machine to another.

# This init script was shameless hacked from the sendmail init script

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Source exim configuration

if [ -f /etc/sysconfig/exim ] ; then
        . /etc/sysconfig/exim
else
        DAEMON=yes
        QUEUE=1h
fi
 

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -f /usr/sbin/exim ] || exit 0

# See how we were called.
case "$1" in
  start)
	# Start daemons.
	echo -n "Starting exim: "
	daemon /usr/sbin/exim $([ "$DAEMON" = yes ] && echo -bd) \
 		$([ -n "$QUEUE" ] && echo -q$QUEUE)
 	echo
	touch /var/lock/subsys/exim
	;;
  stop)
	# Stop daemons.
	echo -n "Shutting down exim: "
	killproc exim
	echo
	rm -f /var/lock/subsys/exim
	;;
  restart|reload)
	killall -HUP exim
	;;
  status)
	status exim
	;;
  *)
	echo "Usage: exim {start|stop|restart|reload|status}"
	exit 1
esac

exit 0

