Yves wrote:

> Hi all

> I want to simply bypass Spam scanning for the local address 
> '[EMAIL PROTECTED]'. I tried different ways (see below), but without any 
> luck.

> I use Debian Etch with official packages (Amavis 2.4.2) and wrote 
> everything in the conf.d/50-user file.

> Thanks in advance, Yves

> For example I tried this:
>   @bypass_spam_checks_acl = (
>     [qw( '[EMAIL PROTECTED]' )]
>   );

>   @spam_lovers_acl = (
>     [qw( '[EMAIL PROTECTED]' )]
>   );

> and I tried this:
>   @bypass_spam_checks_acl = qw( '[EMAIL PROTECTED]' );
>   @spam_lovers_acl = qw( '[EMAIL PROTECTED]' );

Preferably use *_maps. Don't use quotation marks when using qw().

"The 'quote word' function qw() is used to generate a list of words.
It takes a string such as:
    tempfile tempdir
and returns a quoted list:
    'tempfile', 'tempdir'"

@bypass_spam_checks_maps = ([ qw( [EMAIL PROTECTED] ) ]);
@spam_lovers_maps = ([ qw( [EMAIL PROTECTED] ) ]);

Gary V



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
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