Ryan,

> I've configured Amavis to scan incoming messages, quarantine viruses
> without DSN, quarantine bad headers without DSN, quarantine banned files
> without DSN, and tag spam and alter subject for internal recipients.
>
> This seems to be working great, but recently I was asked to scan and filter
> outbound messages.
> I've configured MYNETS in various ways trying to accomplish the following. 
> Spam, viruses, bad headers, and banned files should be bounced with DSN
...
>  $policy_bank{'MYNETS'} = {  # mail originating from @mynetworks
>    syslog_facility => 'LOCAL4',  # tell syslog to log to a separate file
>    log_level => [5],
>     spam_dsn_cutoff_level_maps => [15],
>     final_virus_destiny => [D_BOUNCE],
>     final_spam_destiny => [D_BOUNCE],
>      spam_kill_level_maps => [10],
>    banned_filename_maps => ['MYNETS-DEFAULT'],
> };

Lists/arrays are to be bracketed by [...], plain scalars should not.

Examples of lists are various *_maps (containing a list of lookup tables)
and old style *_acl, and few special cases like av_scanners, auth_mech_avail.
The rest is not supposed to be a ref to a list.

>     log_level => 5,
>     final_virus_destiny => D_BOUNCE,
>     final_spam_destiny => D_BOUNCE,

  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