Damien,

> I'd like to exclude a single user from whitelisting (eg.
> [EMAIL PROTECTED] ). Any thought or examples on how to do this?

Gary V wrote:

> You could instead use ACL here:
>   @whitelist_sender_acl = qw( [EMAIL PROTECTED] .example.com );
> If you are really whitelisting your own domain (as mydomain may
> indicate) you can expect some spammers to use your domain as the
> sending domain, which means you will be whitelisting some spam.

Right, it is rather counterproductive to whitelist your own domain.
If you must, just add few negative score points: add your domain
to @score_sender_maps somewhere where the '[EMAIL PROTECTED]'
is in the default distribution of amavisd.conf.

It is much better to increase tag/kill levels or disable spam checks
on mail coming from your networks, maybe even turn on spam alerts
for internally generated spam:

@mynetworks = qw( ... );

$policy_bank{'MYNETS'} = {  # mail originating from @mynetworks
  spam_admin_maps  => ["[EMAIL PROTECTED]"],
  spam_kill_level_maps => 10.0,
  spam_tag2_level_maps => 10.0,
  final_spam_destiny => D_DISCARD,
};

  Mark


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
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/

Reply via email to