xtendedf
10-14-2006, 07:49 AM
trying out a filter but not very good with regex.
i'm trying to filter out any messages that doesn't have the
word "codeword" on the subject. the best i could do was
the match on regex expression [^codeword] but this requires
an EXACT MATCH on the word "codeword". i need to wildcard
"codeword" so that messages with "codeword" in the subject
line will get thru. in other words, "codeword" can appear anywhere
on the subject line. i've tried [^/codeword/], [^/.codeword./]
but no luck.
i'm trying to filter out any messages that doesn't have the
word "codeword" on the subject. the best i could do was
the match on regex expression [^codeword] but this requires
an EXACT MATCH on the word "codeword". i need to wildcard
"codeword" so that messages with "codeword" in the subject
line will get thru. in other words, "codeword" can appear anywhere
on the subject line. i've tried [^/codeword/], [^/.codeword./]
but no luck.