Lampa, > is there some way how to setup forwarding mails marked as SPAM for > some domains to one user (spam for domains @example.com, > @example2.com, @example3.com, ... forward to [email protected]) ?
If I understand correctly, you'd want to whitelist senders @example.com, @example2.com, @example3.com, but just for a recipient [email protected]. This can be accomplished with @score_sender_maps : @score_sender_maps = ({ # a by-recipient hash lookup table '[email protected]' => [{ # a by-sender hash lookup table '.example.com' => -999, '.example2.com' => -999, '.example3.com' => -999, }], }); Mark ------------------------------------------------------------------------------ _______________________________________________ AMaViS-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amavis-user Please visit http://www.ijs.si/software/amavisd/ regularly For administrativa requests please send email to rainer at openantivirus dot org
