Mark Martinec wrote: >> I'm using amavis on a home network (mainly for detecting spam with >> spamassasin). Email is fetched from my isp mailserver with fetchmail, >> so there is absolutely no need to send any reports, bounces, reject >> messages or anything like that to the outside world. How can I disable >> those messages, or redirect them to a special mailbox so that only I get >> notified of possible problems? > > $final_virus_destiny, $final_banned_destiny, $final_spam_destiny > and $final_bad_header_destiny should all be either D_PASS or D_DISCARD > (but not D_BOUNCE) to prevent non-delivery notifications from being sent.
I have already set all of them to D_PASS, but there was still a non-delivery message send. The reason was an invalid header (duplicate Message-ID). > The rest is already a default (unless you changed it): > > admin notifications: > $newvirus_admin = undef; > $virus_admin = undef; > $spam_admin = undef; > $banned_admin = undef; > $bad_header_admin = undef; > > sender notifications: > $warnvirussender = undef; > $warnbannedsender = undef; > $warnspamsender = undef; > $warnbadhsender = undef; > > recipient notifications: > $warnvirusrecip = undef; > $warnbannedrecip = undef; > $warnbadhrecip = undef; I didn't touch any of those. So they should have their default values. And Ubuntu doesn't seem to change them either: /etc/amavis/conf.d/20-debian_defaults: $virus_admin = "[EMAIL PROTECTED]"; /etc/amavis/conf.d/21-ubuntu_defaults: $virus_admin = undef; $spam_admin = undef; ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ AMaViS-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/
