mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
420 B

#!/bin/sh
#
# ROCK Linux: /etc/rc.d/init.d/spamd
#
# Desc: The spamassassin mail filter server
# Runlevel: 22 rcX
#
main_begin
block_begin(start, `Starting spamd.')
check(`D_prefix/bin/spamd -d')
block_end
block_begin(stop, `Stopping spamd.')
check(`killall -15 spamd')
block_end
block_begin(restart, `Restarting exim.')
check(`killall -1 spamd')
block_end
main_end