Regex negative lookahead not working
Hi All,
I am trying to use regex to catch some specific email address while excluding some and seems regex negative lookahead is not working in FortiMail. Can anyone confirm that or me just doing it wrong?
My regex is to search in header with line "start with from:" and end with "example.com", but ignore anything from @support.example.com
(?!^from:.*@support\.example\.com$)(^from:.*example\.com$)
Thanks a lot.
Brian