Mike Spamassassin wrote: >> header NOT_MY_NAME To:name !~ /\b(?:Mike|Michael)\b/i >> score NOT_MY_NAME 0.5 >> describe NOT_MY_NAME To does not contain Mike or Michael
Ok you want to be able to allow blank names try this rule: header NOT_MY_NAME To:name !~ /\b(?:Mi(?:ke|chael))\b/i [if-unset: Mike] score NOT_MY_NAME 0.5 This way if name is not given, it defaults to Mike. It's untested but looks right. Fred