diff options
Diffstat (limited to 'network/exim/contrib/rc.exim.new')
-rw-r--r-- | network/exim/contrib/rc.exim.new | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/network/exim/contrib/rc.exim.new b/network/exim/contrib/rc.exim.new deleted file mode 100644 index 3fb62f1bf3..0000000000 --- a/network/exim/contrib/rc.exim.new +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# Start/stop/restart the Exim MTA - -# Run as SMTP listener daemon, do queue runs every 15 mins. -EXIM_ARGS="-bd -q15m" - -case "$1" in - start) - echo "Starting Exim" - /usr/sbin/exim $EXIM_ARGS - ;; - stop) - echo "Stopping Exim" - pkill -f /usr/sbin/exim - ;; - reload) - echo "Reloading Exim config" - pkill -HUP -f /usr/sbin/exim - ;; - restart) - $0 stop - sleep 2 - $0 start - ;; - *) - echo "usage: $0 {start|stop|reload|restart}" - ;; -esac |