How to write filter to check Subject line for all lowercase??

Forum for MailWasher Pro 7 and/or older 2011/2012 versions.
User avatar
blueboy714
Travelling Tuatara
Posts: 48
Joined: Fri Feb 20, 2015 4:23 am

How to write filter to check Subject line for all lowercase??

Tue Sep 15, 2020 9:35 am

I cannot figure out MW7's filters - it used to be easier.

How do write a filter to check the subject line (or body) for all lowercase or numbers?

Someone got a hold of my email somewhere and it flooding me with emails.

Thanks
ru
rusticdog

Re: How to write filter to check Subject line for all lowercase??

Tue Sep 15, 2020 8:15 pm

The regular expression engine we use has these nice POSIX sets, http://www.regexlab.com/en/deelx/syntax/bas_set.htm
In this case you can use
[:upper:]

Which would only refer to upper case characters.

So set the filter up as :
SUBJECT, DOESN'T CONTAIN, REGEX, [:upper:]
That'll match any message where the subject is only lower case characters.

BODY, DOESN'T CONTAIN, REGEX, [:upper:]
To match on the message body being all lower case, or being only digits. Or being blank would match.
User avatar
blueboy714
Travelling Tuatara
Posts: 48
Joined: Fri Feb 20, 2015 4:23 am

Re: How to write filter to check Subject line for all lowercase??

Wed Sep 16, 2020 5:26 am

thanks rusticdog - this worked like a charm.

Return to “MailWasher Pro 7”