#!/bin/sh # description: the spamassassin daemon case "$1" in start) echo "Starting the spamassassin daemon (spamd)..." /usr/local/bin/spamd -d ;; stop) echo "Stopping the spamassassin daemon (spamd)..." killall spamd ;; restart) echo "Restarting the spamassassin daemon (spamd)..." spamdctl stop spamdctl start ;; help) cat <