|
From: Tim D. <tdo...@ha...> - 2004-04-15 18:45:31
|
I have installed and configured amavisd, Postfix, and ClamAV on a server I plan on using as a backup mail relay for our incoming email. Since most virii in the wild today spoof the sender address, I would like to be nice and not send rejection notices for emails that I find to contain a virus. I think the folloing settings are correct to not send the virus notification, are there any other settings I should look for? I believe the way I have it set, a rejection message should be sent if someone sends an infected email, but if someone sends an attachment with a banned extension (ie. a .vbs file) a rejection email should be sent. Thanks, Tim Donahue $final_virus_destiny = D_DISCARD; # (defaults to D_BOUNCE) $final_banned_destiny = D_BOUNCE; # (defaults to D_BOUNCE) $final_spam_destiny = D_BOUNCE; # (defaults to D_REJECT) $final_bad_header_destiny = D_PASS; # (defaults to D_PASS), D_BOUNCE suggested $warnvirussender = 0; # (defaults to false (undef)) $warnbannedsender = 1; # (defaults to false (undef)) |