Hannu Liljemark wrote:

now, the spamass-milter daemon seems to stop running every few
minutes.

Run this every minute from cron until you find the problem. Nutscrape has wrapped a couple of these lines.


#!/bin/sh
PATH=/bin:/usr/bin

PID=`ps -ax | grep spamass-milter | grep -v grep | cut -c 1-5 |
tr -d " "`

if [ ! $PID ]
then
  echo "Re-starting milter."
  /usr/local/sbin/spamass-milter -p /var/run/spamass-milter.sock -f -r 20
  kill -1 `head -1 /var/run/sendmail.pid`
fi

Have you tried running the milter with increased logging?

Yes, add `-d 3' to the command line. Look closely at the message size. Is milter puking on empty messages (no body at all)?





------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Spamassassin-talk mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to