From 53210b068e4dbda66a095f692a710ed6f7988e80 Mon Sep 17 00:00:00 2001 From: mpaperno Date: Wed, 29 Aug 2012 23:32:01 -0400 Subject: Initial commit --- misc/spampd-rh-rc-script.sh | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 misc/spampd-rh-rc-script.sh (limited to 'misc/spampd-rh-rc-script.sh') diff --git a/misc/spampd-rh-rc-script.sh b/misc/spampd-rh-rc-script.sh new file mode 100644 index 0000000..5b90c0b --- /dev/null +++ b/misc/spampd-rh-rc-script.sh @@ -0,0 +1,52 @@ +#!/bin/sh +# +# This script starts and stops the spampd daemon +# +# chkconfig: 2345 80 30 +# +# description: spampd is a daemon process which uses SpamAssassin to check +# email messages for SPAM. + +# Source function library. +. /etc/rc.d/init.d/functions + +# Source networking configuration. +. /etc/sysconfig/network + +# Check that networking is up. +[ ${NETWORKING} = "no" ] && exit 0 + +[ -f /usr/bin/spampd -o -f /usr/local/bin/spampd ] || exit 0 +PATH=$PATH:/usr/bin:/usr/local/bin + +# See how we were called. +case "$1" in + start) + # Start daemon. + echo -n "Starting spampd: " + daemon spampd --port=10025 --relayhost=127.0.0.1:25 --tagall --auto-whitelist + RETVAL=$? + touch /var/lock/spampd + echo + ;; + stop) + # Stop daemons. + echo -n "Shutting down spampd: " + killproc spampd + RETVAL=$? + rm -f /var/lock/spampd + echo + ;; + restart) + $0 stop + $0 start + ;; + status) + status spampd + ;; + *) + echo "Usage: $0 {start|stop|restart|status}" + exit 1 +esac + +exit 0 -- cgit v1.2.3-24-g4f1b