#!/bin/sh # # qmail This shell script takes care of starting and stopping # qmail. # # chkconfig: 2345 80 30 # description: qmail is a Mail Transport Agent, which is the program \ # that moves mail from one machine to another. # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Source sendmail configureation. if [ -f /etc/sysconfig/sendmail ] ; then . /etc/sysconfig/sendmail else DAEMON=yes QUEUE=1h fi # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -f /var/qmail/rc ] || exit 0 # See how we were called. case "$1" in start) # Start daemons. echo -n "Starting Qmail: " [ "$DAEMON" = yes ] && daemon /var/qmail/rc echo touch /var/lock/subsys/qmail ;; stop) # Stop daemons. echo -n "Shutting down qmail: " killproc qmail-send echo rm -f /var/lock/subsys/qmail ;; restart) $0 stop $0 start ;; status) status qmail-send ;; *) echo "Usage: ${0##*/} {start|stop|restart|status}" exit 1 esac exit 0