<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi Michael,<br>
<br>
I have seen the following (mis-)behaviour with the latest AV-Spam
package a few times meanwhile:<br>
<br>
Sometimes, I feel like its after adding i.e. address to whitelists,
clamav-milter stops responding and mails pile up in the queue. A
bold <i>/etc/init.d/clamav-milter restart</i> solves the problem
quickly.<br>
I have now simple cronjobs monitoring and restarting clamav-milter
but I wondered if this could be something that the AV-Spam package
could do i.e. within the BX services watchdog.<br>
<br>
Currently, I am using this basic watchdog:<br>
<br>
---<br>
#!/bin/bash<br>
/etc/init.d/clamav-milter status<br>
if [[ $? != 0 ]]; then<br>
echo clamav-milter hanging, restarting..<br>
/etc/init.d/clamav-milter restart<br>
fi<br>
/etc/init.d/clamd status<br>
if [[ $? != 0 ]]; then<br>
echo clamd hanging, restarting..<br>
/etc/init.d/clamd restart<br>
fi<br>
---<br>
<br>
Cheers,<br>
Christoph<br>
</body>
</html>