#!/bin/sh
#
# sendmail      This shell script takes care of starting and stopping
#               sendmail.
#

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

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

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

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

# See how we were called.
case "$1" in
  start)
	# Start daemons.
	echo -n "Starting sendmail: "
	daemon sendmail -bd -q1h
	echo
	touch /var/lock/subsys/sendmail
	;;
  stop)
	# Stop daemons.
	echo -n "Shutting down sendmail: "
	killproc sendmail
	echo
	rm -f /var/lock/subsys/sendmail
	;;
  *)
	echo "Usage: sendmail {start|stop}"
	exit 1
esac

exit 0

