I want to bump the score if neither the To: nor the Cc: field contains my address.
I'm guessing I want something like this:
header __NOT_TO_ME To !~ /[EMAIL PROTECTED]/ header __NOT_CC_ME Cc !~ /vlb~cfcl.com/ meta NOT_FOR_ME ( __NOT_TO_ME && __NOT_CC_ME ) score NOT_FOR_ME 10
Or should I just try this?
header NOT_FOR_ME ToCc !~ /([EMAIL PROTECTED]/
I can play with possibilities but I'd love a recommendation from someone who has working code!
I'll warn you to be very cautious about doing EITHER of the above...
In particular, mailing lists will generally hit on this rule. Including this message I'm writing right now. Also some legitimate newsletters, publications, etc will hit this rule. Not to mention that I get plenty of mail sent by friends announcing they are moving and they bcc it to a large number of people (BCC in the interest of not spreading everyone's email address around to everyone else)
You might try the rule, but clearly 10 points is likely to cause you problems with real-world nonspam mail, some hand sent by people you know well..