cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
880
Views
0
Helpful
2
Replies

Empty RE: and FW: blocking

mlynch_ironport
Level 1
Level 1

Hi All,
I simply need to drop replies and forwards (RE: & FW:) that do not have any text that follows the RE: & FW: 's.
I have created incoming content filter rules, and they work for "empty subject" mails. When the subject is RE: and then blank, I want to drop these types of mails also.....

2 Replies 2

Andrew Wurster
Level 1
Level 1

try dropping all subject values like those with a regex of:

(?i)^(re:|fw:)$

** don't forget to use subject 'equals'.

check out bounce verification too for empty 'from' addresses to stop bounce storms and OOO reply issues and so on...

http://tinyurl.com/6jyfax

take care!

andrew

Donald Nash
Level 3
Level 3

I'd use:

(?i)^(re:|fw:)\s*$

The "\s*" will match any trailing whitespace.