Page 1 of 1

Please check MarilControl search, thanks.

Posted: 25 Feb 2017, 17:57
by Sergio
Hi.
I am trying to do a search in MailControl for the following:
Search: SUBJECT
REGEX: ^\(.*\)
and search shows "No results".

I know that a lot of subjects met that expression but MailControl doesn't show them.

Thanks in advance.

Sergio

Re: Please check MarilControl search, thanks.

Posted: 25 Feb 2017, 18:06
by ForumAdmin
Try it with a preceding space. There appears to be a bug in MailScanner that inserts a space before the subject, so:

Code: Select all

REGEX: ^\s?\(.*\)
might work.

Re: Please check MarilControl search, thanks.

Posted: 25 Feb 2017, 18:19
by Sergio
It didn't work, it still shows "No results"
here are some subjects that it should catch:
(xxxxxxxx) Business Award
(yyyyyyy) Extended for a day
(zzzzzzzz) Walgreens gift

Regards,
Sergio

EDIT:
It worked but instead of using \s, I inserted the space and worked:
^ \(.*\)

Thank you!!