Currently, amavisd-new ships with a viruses_that_fake_sender RE to control which viruses that Amavisd alerts the sender about. With the ever-growing population of sender-faking viruses, this is not easily manageable. Mark Martinec posted a nice clean solution to this issue - Reproducible: Always Steps to Reproduce: 1. 2. 3. $viruses_that_fake_sender_re = new_RE( [qr'^(EICAR\.COM|Joke\.|Junk\.)'i => 0], [qr'^(WM97|OF97|W95/CIH-|JS/Fort)'i => 0], [qr/.*/ => 1], # true by default );
Created attachment 27839 [details] Mail from amavisd-new author re viruses_that_fake_sender
I'm not sure the ebuild is the proper place to maintain this either. I am guessing that the next version of the package upstream will contain this in the default conf. For now, just update locally. Or am I missing something?
Point taken. I'll check with the amavisd-new folks to see if the suggested change from the author is going to become the default (or at least get included in the .conf file).
Apologies, I was blind. The new version does have the fix I was talking about.