Damian Menscher said:
Both of us run watchdog scripts (I run clmilter_watch every 15 minutes) so, at worst, clamav-milter will be down for 15 minutes. In your case, all mail delivery will stop, and I think outgoing mail will also be broken. So, not only will your mailserver be down, but your users won't be able to contact you to let you know it's down. Of course, a 15-minute downtime might be acceptable to you.
Use a startup script like this (crude) example and you wait only a few seconds:
#! /bin/sh # Start daemon, restart if it dies, send notification to syslog
start_clamav_milter () { /usr/bin/clamav_milter [args] }
# main While :; do start_clamav_milter sleep 5 logger -t clamav -p local5.crit "Damn milter quit again" done
That only saves you if clamav-milter crashes, not if it hangs, or if the virus database gets borked, or any number of other problems. To guard against all possible failures you need clmilter_watch, available at
http://www.itg.uiuc.edu/itg_software/clmilter_watch/
Damian Menscher -- -=#| Physics Grad Student & SysAdmin @ U Illinois Urbana-Champaign |#=- -=#| 488 LLP, 1110 W. Green St, Urbana, IL 61801 Ofc:(217)333-0038 |#=- -=#| 4602 Beckman, VMIL/MS, Imaging Technology Group:(217)244-3074 |#=- -=#| <[EMAIL PROTECTED]> www.uiuc.edu/~menscher/ Fax:(217)333-9819 |#=- -=#| The above opinions are not necessarily those of my employers. |#=- _______________________________________________ http://lurker.clamav.net/list/clamav-users.html