amavis wrote:
> Hi,
> Currently I am using following in amavisd.conf
> $spam_quarantine_to = 'spam-quarantine'; # default local quarantine
> @spam_quarantine_to_maps = (
{ '.domain.com' =>> '[EMAIL PROTECTED]',
> },
> $spam_quarantine_to, # catchall
> );
> This is redirecting all mails which are equal to or greater than
> $sa_kill_level_deflt(which is 9) to separate "spams" mbox for the
> domain but the mails tagged a "SPAM" are not redirected to this mbox .
> How do I redirect the "SPAM" tagged mails also to this "SPAMS" mbox?
> Please help.
> Thank you.
> -Sysadmin
There should not be two >> here:
'.domain.com' =>> '[EMAIL PROTECTED]'
just one:
'.domain.com' => '[EMAIL PROTECTED]'
You could stop tagging the Subject line for .domain.com and/or if you
like, lower the kill_level for that domain. Here I lower it to the
same value as sa_tag2_level_deflt, which will also mean the Subject
header will not be marked as SPAM (for .domain.com).
$sa_tag2_level_deflt = 7.0;
$sa_kill_level_deflt = 9.0;
@spam_kill_level_maps = (
{ '.domain.com' => 7.0, },
\$sa_kill_level_deflt, # catchall default
);
This next setting means the Subject line will be modified for
everyone except .domain.com:
@spam_modifies_subj_maps = ( [qw( !.domain.com . )] );
These examples are in amavisd.conf-sample
Gary V
-------------------------------------------------------------------------
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/