Craig Morrison wrote:
beast wrote:
Is it possible to make different tag for a different score/classes,
for example:
high: [SPAM!!!] if score > 50
medium: [SPAM!!] if score between 20 - 50
low: [SPAM] if score between treshold - 20
The reason is client filter or other redirection program (for example
to be redirected/ quarantined for further inspection) can not parse
the score directly.
perldoc Mail::SpamAssassin::Conf
Look for the TEMPLATE TAGS section, in particular the _STARS(*)_ tag.
Almost, but not exactly what I want since it still has so many
possibility (up to 50 stars).
I just want to use these 2 redirection (in postfix):
/^X-Spam-Level: Medium/ REDIRECT [EMAIL PROTECTED]
/^X-Spam-Level: High/ REDIRECT [EMAIL PROTECTED]
--beast