Rick Macdougall wanted us to know:

>>While the discussion of top-posting is fascinating, can I take it that we 
>>are the only two people with this problem ?
>Mine died last night.  0.72.  I'll upgrade today to 0.73 and see if that 
>helps.

I have similar problems with milter (but sometimes it's clam and
sometimes it's spamassassin) but much less frequently than you seem to
be seeing.

Here's what I did to make mine more stable.  You can make it more
frequent than every 6 hours.

[EMAIL PROTECTED] root]# crontab -l | tail -2
MAILTO="[EMAIL PROTECTED]"
33 */6 * * * /root/bin/checkmail
[EMAIL PROTECTED] root]# cat /root/bin/checkmail 
#!/bin/bash

# Check end process then milter.  If either is not running, restart
# both.

/sbin/service spamassassin status 
RETVAL=$?
/sbin/service spamass-milter status
RETVAL2=$?
if [ $RETVAL -ne 0 -o $RETVAL2 -ne 0 ]; then
        /sbin/service spamassassin restart
        /sbin/service spamass-milter restart
fi

unset RETVAL
unset RETVAL2

/sbin/service clamd status
RETVAL=$?
/sbin/service clamav-milter status
RETVAL2=$?
if [ $RETVAL -ne 0 -o $RETVAL2 -ne 0 ]; then
        /sbin/service clamd restart
        /sbin/service clamav-milter restart
fi

[EMAIL PROTECTED] root]# 

-- 
Regards...              Todd
They that can give up essential liberty to obtain a little temporary 
safety deserve neither liberty nor safety.       --Benjamin Franklin
Linux kernel 2.6.3-4mdkenterprise   1 user,  load average: 0.02, 0.05, 0.00


-------------------------------------------------------
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
_______________________________________________
Clamav-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to