diff options
author | Thomas Morper <thomas@beingboiled.info> | 2010-04-07 22:30:26 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-15 10:24:20 +0200 |
commit | ffd97168269b59ebcd2b1697cbeedc8fa1329cec (patch) | |
tree | 94dfb67ecd0bac515f5ab185684fa0ce7055ad0f /network/exim/contrib/rc.exim.new | |
parent | 669ea352d9812695a8921a735bb0ab63ea32414d (diff) | |
download | slackbuilds-ffd97168269b59ebcd2b1697cbeedc8fa1329cec.tar.gz |
network/exim: Added. exim is a sendmail replacement.
Diffstat (limited to 'network/exim/contrib/rc.exim.new')
-rw-r--r-- | network/exim/contrib/rc.exim.new | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/network/exim/contrib/rc.exim.new b/network/exim/contrib/rc.exim.new new file mode 100644 index 0000000000..16d1ca71d0 --- /dev/null +++ b/network/exim/contrib/rc.exim.new @@ -0,0 +1,62 @@ +#!/bin/sh + +# /etc/rc.d/rc.exim - start/stop/restart the exim mail transfer agent. +# +# Thales A. Tsailas <ttsailas@enforcingit.com> +# Thomas Morper <thomas@beingboiled.info> + +PIDFILE=/var/run/exim.pid + +# the TIME option causes Exim to run as a daemon, starting a queue runner +# process at intervals specified by the given time value. (ie 5m, 1h etc). +TIME=15m + +exim_start() { + echo "Starting exim..." + /usr/sbin/exim -bd ${TIME:+-q$TIME} +} + +exim_stop() { + echo "Shutting down exim..." + killall exim + rm -f $PIDFILE +} + +exim_reload() { + echo "Reloading exim configuration..." + if [ -f $PIDFILE ]; then + kill -HUP $(cat $PIDFILE) + fi +} + +exim_status() { + if [ -f /var/run/exim.pid ]; then + echo "exim is running..."; + else + echo "exim is not running..."; + fi +} + +# See how we were called. +case "$1" in + start) + exim_start + ;; + stop) + exim_stop + ;; + restart) + exim_stop + sleep 2 + exim_start + ;; + reload) + exim_reload + ;; + status) + exim_status + ;; + *) + echo $"Usage: $0 {start|stop|restart|reload|status}" + ;; +esac |