#!/bin/bash # # exim This shell script takes care of starting and stopping exim # # Taken from http://www.timj.co.uk/linux/sources/exim.init and then # modified to run with a default exim build under Linux, including # using the exim group vs. mail group for process owner. # # chkconfig: 2345 80 30 # description: Exim is a Mail Transport Agent, which is the program \ # that moves mail from one machine to another. # processname: exim # config: /usr/exim/configure # pidfile: /var/run/exim.pid # Source function library. . /etc/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=20m fi # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -f /usr/exim/bin/exim ] || exit 0 start() { # Start daemons. echo -n $"Starting $0: " daemon /usr/exim/bin/exim $([ "$DAEMON" = yes ] && echo -bd) \ $([ -n "$QUEUE" ] && echo -q$QUEUE) RETVAL=$? echo [ $RETVAL = 0 ] && touch /var/lock/subsys/exim } stop() { # Stop daemons. echo -n $"Shutting down $0: " killproc exim RETVAL=$? echo [ $RETVAL = 0 ] && rm -f /var/lock/subsys/exim } restart() { stop start } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) restart ;; reload) restart ;; condrestart) [ -f /var/lock/subsys/exim ] && { stop [ -x /bin/chown ] && /bin/chown exim.exim -R /var/spool/exim start } || { [ -x /bin/chown ] && /bin/chown exim.exim -R /var/spool/exim } ;; status) status exim ;; *) echo $"Usage: $0 {start|stop|restart|reload|status|condrestart}" exit 1 esac exit $RETVAL