On 9/25/07, Hans Moser <[EMAIL PROTECTED]> wrote:
> Hi!
>
> This is version 2.4.5. I want to quarantine Spam above a score of (here)
> 19 in a remote mailbox.

Quarantine is triggered by kill_level. If you want to quarantine at
19, you could set:
$sa_kill_level_deflt = 19;

$sa_quarantine_cutoff_level is used to delete high scoring spam that
is bound for the quarantine. If you wanted to review all the
quarantined spam, you could set this to:
$sa_quarantine_cutoff_level = undef;

or, to delete high scoring spam, set this at some level higher than
kill_level, e.g.:
$sa_quarantine_cutoff_level = 30;

> (Later I want it to be deleted.)

I assume you mean you will delete it manually (or programatically).
Amavisd-new does reach into your mailbox and delete messages after
some time has passed.

You have set:

> $final_spam_destiny       = D_PASS;

This means recipients will receive spam messages regardless of score.
If a spam message scores at 30 (and you have set $sa_kill_level_deflt
= 19;) a copy will go to the quarantine and a copy will go to
recipient(s). To avoid recipients receiving spam that is also
quarantined, you could set:
$final_spam_destiny       = D_DISCARD;

See:
http://www200.pair.com/mecham/spam/amavisd-settings.html

-- 
Gary V

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
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