after launching spamd (31x branch, r486953) with,
spamd --daemonize --nouser-config --allow-tell
--allowed-ips=192.168.1.10,127.0.0.1 --listen-ip=127.0.0.1 --port=783
</dev/null >> /var/log/spamd.log &
i see only,
ps -ax | grep -i spamd
922 ?? S 0:00.18 spamd child
923 ?? S 0:00.14 spamd child
24006 p1 R+ 0:00.01 grep -i spamd
if i want to stop/restart spamd,
kill 922 923
kills the two child processes, which then immediately restart.
iirc, this,
kill -HUP `ps -ax | grep \? | grep "bin/spamd" | cut -c1-5`
used to work because i actually saw a kill-able spamd master process.
how do i kill spamd and "keep it dead"?
this bug,
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4304
seems related, and seomthing (a fix?) WAS committed to r485842, but
i'm still seeing this problem with my version.
was this commit a fix?
was it to TRUNK or bracnh 31x?