high: [SPAM!!!] if score > 50
medium: [SPAM!!] if score between 20 - 50
low: [SPAM] if score between treshold - 20
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]
I'm not a postfix guru, but if it uses a regex that includes a specification
of number of occurrances, couldn't you do something like
stars /*{51,}/
: high
stars /*{21,}/
: medium
: low
Loren