2010/5/19 Mark Martinec <[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, > }], > });
No. I want forward spams for domains @example.com, @example2.com, @example3.com to one user on one of these domains ([email protected]). Default rule is quarantine, some users have overriden quarantine using @spam_kill_level_maps = ( {[email protected]' => 99.0}, # '.example.net' => 8.0, # '.example.org' => 10.0 }, \$sa_kill_level_deflt, # catchall default ); Something like @virus_admin_maps = ({ '.example.com' => '[email protected]', '.example.net' => '[email protected]', '.' => '[email protected]', }); not send virus/banned/spam warning to listed admin for listed domains but forward whole virus/banned/spam message to user eg: @spam_user_maps = { 'example1.com' => '[email protected]', 'example2.com' => '[email protected]', 'example3.com' => '[email protected], }); Explained clearly ? -- Lampa ------------------------------------------------------------------------------ _______________________________________________ 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
