How would you write a "Subject Contains" filter string in a maileater mailbox rule so that the email subject that contains parenthesis (for example (MDD_Scan)) will create/update a CA Service Desk Manager ticket?
According to regular expression rules (https://www3.ntu.edu.sg/home/ehchua/programming/howto/Regexe.html#:~:text=To%20match%20a%20character%20having,%22%20(back%2Dslash), the special characters ( and ) would need to be escaped using \
Does this need to done with the CA Service Desk mailbox rule?
CA Service Desk Manager 17.3 and 17.4
You do NOT have to escape the special characters ( and ) using \
CA Service Desk maileater script handles that automatically.
For example, you should use [ \t\r\n](MDD_Scan)[ \t\r\n] (instead of [ \t\r\n]\(MDD_Scan\)[ \t\r\n])