rocsca,

> What is the best (and simple) way to avoid spam scan for all email
> messages destined to a particular recipient?

@bypass_spam_checks_maps = ({
  'us...@example.com'   => 1,
  'us...@example.com'   => 1,
  '.office.example.net' => 1,
});

@spam_lovers_maps = @bypass_spam_checks_maps;


Instead of a hash lookup, you can use an ACL list,
regexp-based lookup, SQL or LDAP, see README.lookups.

And example using a list as a lookup mechanism:

@bypass_spam_checks_maps = ([
  qw(us...@example.com us...@example.com .office.example.net)
]);
@spam_lovers_maps = @bypass_spam_checks_maps;


  Mark

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 

Reply via email to