cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1408
Views
0
Helpful
1
Replies

Outbound Content Filter Regular Expression Match List

John Gann
Level 1
Level 1

Looking for quick guidance on Ironport outbound content filters using regular expression

I have nosed around other postings but did not see anything specific to what I am trying to do.

I need to look at the subject line of outgoing email via a content filter and bcc if three words are all matched in the subject line.

I would think it would be something like the below, which seems to work in a regex checker but not on the Ironport.

(?=.*\bword1\b)(?=.*\bword2\b)(?=.*\bword3\b)

1 Reply 1

Tom Foucha
Cisco Employee
Cisco Employee

Might be simpler than you are making it out.

 

(?i)(word1|word2|word3)

 

Do you require all 3 words to match? If so

screenshot