Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > by-pkgid > bca88253a9aef783459eef0ba32c14c4 > files > 19

exim-4.63-5.el5_6.2.src.rpm

#!/bin/bash
#
# exim    This shell script takes care of starting and stopping exim
#
# 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: /etc/exim/exim.conf
# pidfile: /var/run/exim.pid

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

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

# Source exim configureation.
if [ -f /etc/sysconfig/exim ] ; then
	. /etc/sysconfig/exim
else
	DAEMON=yes
	QUEUE=1h
fi

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

gen_cert() {
	if [ ! -f /etc/pki/tls/certs/exim.pem ] ; then
		umask 077
		FQDN=`hostname`
		if [ "x${FQDN}" = "x" ]; then
			FQDN=localhost.localdomain
		fi
		cat << EOF | openssl req -new -x509 -days 365 -nodes \
			-out /etc/pki/tls/certs/exim.pem \
			-keyout /etc/pki/tls/private/exim.pem &>/dev/null
--
SomeState
SomeCity
SomeOrganization
SomeOrganizationalUnit
${FQDN}
root@${FQDN}
EOF
		chown exim.exim /etc/pki/tls/{private,certs}/exim.pem
		chmod 600 /etc/pki/tls/{private,certs}/exim.pem
	fi
}

start() {
	# Check that networking is up.
	[ ${NETWORKING} = "no" ] && exit 1

	# check ownerships
	# do this by seeing if /var/log/exim/main.log exists and is
	# owned by exim - if owned by someone else we fix it up
	if [ -f /var/log/exim/main.log ]
	then
	    if [ "exim" != "`ls -l /var/log/exim/main.log | awk '{print $4}'`" ]
	    then
		chown -R exim:exim /var/log/exim /var/spool/exim
	    fi
	fi

	# generate certificate if doesn't exist
	gen_cert

        # Start daemons.
        echo -n $"Starting exim: "
        daemon /usr/sbin/exim $([ "$DAEMON" = yes ] && echo -bd) \
                              $([ -n "$QUEUE" ] && echo -q$QUEUE)
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch /var/lock/subsys/exim
        return $RETVAL
}

stop() {
        # Stop daemons.
        echo -n $"Shutting down exim: "
        killproc exim
	RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/exim
        return $RETVAL
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart)
	stop
	start
	;;
  condrestart)
	if status exim > /dev/null; then
	    stop
	    start
	fi
	;;
  status)
	status exim
	;;
  *)
	echo $"Usage: $0 {start|stop|restart|status|condrestart}"
	exit 2
esac

exit $?