]> git.pld-linux.org Git - packages/sendmail.git/blobdiff - sendmail.init
- fix bug in parseaddr.c
[packages/sendmail.git] / sendmail.init
index 52f4bd427d264ed77e4f282f05d341f2ee5158d6..34127ced3ce41acd355e75167836ac34afc25914 100644 (file)
@@ -1,63 +1,88 @@
-#!/bin/sh
+#! /bin/sh
 #
-# sendmail      This shell script takes care of starting and stopping
-#               sendmail.
+# 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.
+# chkconfig:   2345 80 30
+# description: Sendmail is a Mail Transport Agent, which is the program \
+#              that moves mail from one machine to another.
+# pidfile:     /var/run/sendmail.pid
 
-# Source function library.
+
+# Source function library
 . /etc/rc.d/init.d/functions
 
-# Source networking configuration.
+# Get network config
 . /etc/sysconfig/network
 
-# Check that networking is up.
-[ "${NETWORKING}" = "no" ] && exit 0
-
-[ -f /usr/sbin/sendmail ] || exit 0
-
-# Get config from /etc/sysconfig ... 
+# Get service config
 if [ -f /etc/sysconfig/sendmail ]; then
-    . /etc/sysconfig/sendmail
-fi    
+       . /etc/sysconfig/sendmail
+else
+       DAEMON=yes
+       QUEUE=1h
+       ENABLE_IPV6=yes
+fi
 
+# Check that networking is up.
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
+               msg_network_down Sendmail
+               exit 1
+       fi
+else
+       exit 0
+fi
+
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
-       # Start daemons.
-       show Prepare sendmail db
-       busy
-       newaliases &>/dev/null
-       for i in virtusertable access domaintable mailertable 
-       do
-       if [ -f /etc/mail/$i ] ; then
-          makemap -v hash /etc/mail/$i < /etc/mail/$i
+       # Check if the service is already running?
+       if [ ! -f /var/lock/subsys/sendmail ]; then
+               show "Prepare sendmail db"
+               busy
+               /usr/bin/newaliases >/dev/null 2>&1
+               for i in virtusertable access domaintable mailertable; do
+                       if [ -f /etc/mail/$i ]; then
+                               makemap -v hash /etc/mail/$i < /etc/mail/$i >/dev/null 2>&1
+                               [ $RETVAL -eq 0 ] && RETVAL=$?
+                       fi
+               done 
+               [ $RETVAL -eq 0 ] && ok || fail
+               msg_starting sendmail
+               daemon /usr/sbin/sendmail $([ "$DAEMON" = "yes" ] && echo -bd) \
+                                       $([ -n "$QUEUE" ] && echo -q$QUEUE) \
+                                       $([ "$ENABLE_IPV6" = "yes" ] && 
+                                               echo -ODaemonPortOptions=Family=inet6 )
+               RETVAL=$?
+               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sendmail
+       else
+               msg_already_running sendmail
        fi
-       done 
-       deltext;ok
-       show Starting sendmail
-       daemon sendmail $SENDMAIL_CF
-       touch /var/lock/subsys/sendmail
        ;;
   stop)
-       # Stop daemons.
-       show Shutting down sendmail
-       killproc sendmail
-       rm -f /var/lock/subsys/sendmail
+       if [ -f /var/lock/subsys/sendmail ]; then
+               # Stop daemons.
+               msg_stopping sendmail
+               killproc sendmail
+               rm -f /var/lock/subsys/sendmail
+       else
+               msg_not_running sendmail
+       fi
        ;;
-  restart)
+  restart|force-reload)
        $0 stop
        $0 start
+       exit $?
        ;;
   status)
        status sendmail
+       exit $?
        ;;
   *)
-       echo "Usage: $0 {start|stop|restart|status}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       exit 3
 esac
 
-exit 0
-
+exit $RETVAL
This page took 0.034699 seconds and 4 git commands to generate.