http://bugzilla.spamassassin.org/show_bug.cgi?id=3301
------- Additional Comments From [EMAIL PROTECTED] 2004-04-26 21:55 -------
ahh...i see the problem i was having...
i was doing a kill -9 PARENTID
when i used my rc script to shut things down...
StopService ()
{
if [ -e /var/run/spamd.pid ] ; then
ConsoleMessage "Stopping spamd services"
kill -TERM `cat /var/run/spamd.pid`
rm -f /var/run/spamd.pid
else
echo "spamd is not running."
fi
}
that works...
the other detail that i'm now having problems with is this...if i startup spamd
with this:
/usr/bin/spamd -m 0 -d -r /var/run/spamd.pid
then, the problem is that the -m arg is being ignored and 5 children are still
being started. my guess is that it is not liking the idea of 0 children (ie: the
behavior i used to love cause it worked just fine for me)...
if i do -m 1 then it only starts one child as expected...but i want zero
children right now...
jon
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.