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

Ironport Regex

jtsai8585
Level 1
Level 1

I'm needing regex of some sort for the content filter to quarantine emails with following subject,

  • Completed: [domain name] – "Wire transfer for recipient-name Document Ready for Signature"
  • Completed [domain name/email address] – "Accounting Invoice [Number] Document Ready for Signature"
  • Subject: “Legal acknowledgement for [recipient username] Document is Ready for Signature”
1 Accepted Solution

Accepted Solutions

Libin Varghese
Cisco Employee
Cisco Employee

Hi,

I would recommend using tools available online to create a regex that works for you.

regex101.com

regexr.com

Something to begin testing with

  • Completed:.*– "Wire transfer for recipient-name Document Ready for Signature"
  • Completed.*– "Accounting Invoice.*Document Ready for Signature"
  • Subject: “Legal acknowledgement for.*Document is Ready for Signature”

Here .* means anything

All tricks and trades of regex are available online.

Thank You!

Libin Varghese

View solution in original post

1 Reply 1

Libin Varghese
Cisco Employee
Cisco Employee

Hi,

I would recommend using tools available online to create a regex that works for you.

regex101.com

regexr.com

Something to begin testing with

  • Completed:.*– "Wire transfer for recipient-name Document Ready for Signature"
  • Completed.*– "Accounting Invoice.*Document Ready for Signature"
  • Subject: “Legal acknowledgement for.*Document is Ready for Signature”

Here .* means anything

All tricks and trades of regex are available online.

Thank You!

Libin Varghese