MJ wrote: > Hi, > I am running postfix 2.2.4 on Solaris 8 with amavisd-new.2.3.2, > SpamAssassin 3.04 and Clamav 0.86 as an AV/AS gateway to my main email > system. We are an ISP and we use to receive abuse/spam complaints on > [EMAIL PROTECTED] and [EMAIL PROTECTED] . Since these complaints > contain the original SPAM message, amavis is catching them as SPAM. How > I can exclude these two addresses not to be scanned for incoming > messages. I know about adding negating score for some sender but don't > have any idea how to while list specific recipient address.
> Thanks, > MJ You can use old style acl: @bypass_spam_checks_acl = qw( [EMAIL PROTECTED] [EMAIL PROTECTED] ); @spam_lovers_acl = qw( [EMAIL PROTECTED] [EMAIL PROTECTED] ); Or in a list to the new style maps settings: @bypass_spam_checks_maps = ( [qw( [EMAIL PROTECTED] [EMAIL PROTECTED] )] ); @spam_lovers_maps = ( [qw( [EMAIL PROTECTED] [EMAIL PROTECTED] )] ); There are more examples in amavisd.conf-sample It is best to use both bypass* and *lovers as shown, just to make sure. You could use *lovers by itself. The mail will still be scanned, but the recipient will get the message regardless of the spam score (unless it contains a virus or banned file). If you don't care if it gets scanned or not, you could use only *lovers. Gary V ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ 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/
