[EMAIL PROTECTED] wrote:
You may have to break this up into two rules like this:
header MY_SPAM_1 X-MessageWall-Score: =~ /1[5-9].*/ describe MY_SPAM_1 message wall scored between 15 and 19 score MY_SPAM_1 1.00
header MY_SPAM_2 X-MessageWall-Score: =~ /[2-9][0-9].*/
describe MY_SPAM_2 Message Wall scored between 20 and 99
score MY_SPAM_2 1.00
Would:
header MY_SPAM_1 X-MessageWall-Score: =~/(1[5-9]|[2-9][0-9]).*/ describe MY_SPAM message wall scored between 15 and 99 score MY_SPAM 1.00
work?
- Bob
