Tue Jan 22 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- fix quotation in spec-file
Thu Jan 10 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- integrate ugly logic to compile this src.rpm also on older Red Hat Linux
releases
- clean up spec file and patches a bit
- add db4 support
Wed Jan 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- fix another path to correct docu
- include sendmail/README in the docu
- compile with -D_FFR_WORKAROUND_BROKEN_NAMESERVERS, but do not enable this
at runtime
- devel subpackage files owned by root now
Fri Dec 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- change "-q" to "-s" as option to make #57216
- move milter lib into separate "devel" sub-package
- add include files to devel sub-package #56064
- fix pointer in access file to docu #54351
Mon Sep 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- add libmilter docu
- add support for userdb to /etc/mail/Makefile
- use "btree" database files if a userdb is used
- buildrequires tcp_wrappers
97 lines
1.8 KiB
Bash
97 lines
1.8 KiB
Bash
#!/bin/bash
|
|
#
|
|
# sendmail This shell script takes care of starting and stopping
|
|
# sendmail.
|
|
#
|
|
# chkconfig: 2345 80 30
|
|
# description: Sendmail is a Mail Transport Agent, which is the program \
|
|
# that moves mail from one machine to another.
|
|
# processname: sendmail
|
|
# config: /etc/sendmail.cf
|
|
# pidfile: /var/run/sendmail.pid
|
|
|
|
# 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=no
|
|
QUEUE=1h
|
|
fi
|
|
|
|
# Check that networking is up.
|
|
[ ${NETWORKING} = "no" ] && exit 0
|
|
|
|
[ -f /usr/sbin/sendmail ] || exit 0
|
|
|
|
RETVAL=0
|
|
prog="sendmail"
|
|
|
|
start() {
|
|
# Start daemons.
|
|
|
|
echo -n $"Starting $prog: "
|
|
/usr/bin/newaliases > /dev/null 2>&1
|
|
if test -x /usr/bin/make -a -f /etc/mail/Makefile ; then
|
|
make -C /etc/mail -s
|
|
else
|
|
for i in virtusertable access domaintable mailertable ; do
|
|
if [ -f /etc/mail/$i ] ; then
|
|
makemap hash /etc/mail/$i < /etc/mail/$i
|
|
fi
|
|
done
|
|
fi
|
|
daemon /usr/sbin/sendmail $([ "$DAEMON" = yes ] && echo -bd) \
|
|
$([ -n "$QUEUE" ] && echo -q$QUEUE)
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/sendmail
|
|
return $RETVAL
|
|
}
|
|
|
|
stop() {
|
|
# Stop daemons.
|
|
echo -n $"Shutting down $prog: "
|
|
killproc sendmail
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sendmail
|
|
return $RETVAL
|
|
}
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
stop
|
|
start
|
|
RETVAL=$?
|
|
;;
|
|
condrestart)
|
|
if [ -f /var/lock/subsys/sendmail ]; then
|
|
stop
|
|
start
|
|
RETVAL=$?
|
|
fi
|
|
;;
|
|
status)
|
|
status sendmail
|
|
RETVAL=$?
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|restart|condrestart|status}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $RETVAL
|