spamd on startup?

Lem0nHead

Verified User
Joined
Nov 28, 2004
Messages
265
hello

I installed spamd on FreeBSD with the spam.sh script
will it startup automatic?
I didn't find it on /usr/local/etc/rc.d/

thanks
 
I had to roll my own on FreeBSD 4x/5x

vi /usr/local/etc/rc.d/spamd.sh

and enter:

#!/bin/sh

if [ -x /usr/bin/spamd ] ; then
/usr/bin/spamd -d -c -m 5 && echo "spamd started.."
fi


save this, and chmod it 700.
 
squirrelhost said:
I had to roll my own on FreeBSD 4x/5x

vi /usr/local/etc/rc.d/spamd.sh

and enter:

#!/bin/sh

if [ -x /usr/bin/spamd ] ; then
/usr/bin/spamd -d -c -m 5 && echo "spamd started.."
fi



save this, and chmod it 700.

thanks :)
 
Back
Top