L Lem0nHead Verified User Joined Nov 28, 2004 Messages 265 Oct 17, 2005 #1 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
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
S squirrelhost Verified User Joined Feb 21, 2004 Messages 169 Location Marylebone, London Oct 17, 2005 #2 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.
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.
L Lem0nHead Verified User Joined Nov 28, 2004 Messages 265 Oct 17, 2005 #3 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. Click to expand... thanks
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. Click to expand... thanks