Forum Discussion
Block messages with white space at the beginning of subject
- Jul 05, 2018
You'd want to use the \s regex filter, which catches any whitespace.
Your final regex should look like this:^\s+$
The ^ marks the beginning of the line, + indicates we are looking for any combination of whitespace (from a single character to many repeating whitespaces), and $ marks the end of the line. You can try this out at a regex expression evaluation site like this: https://regexr.com/3s12e
I would highly recommend testing this by putting it in audit mode or applying it to a test user first. Transport rules should always be tested first
To create your transport rule:
1. Create a New Transport Rule
2. Hit 'More Options' at the bottom
3. Select 'Apply this rule if...'
4. Select 'Subject matches these text patterns'
5. Enter the regex
6. Enter any other conditions if needed
7. Select the action to perform (block message)
You'd want to use the \s regex filter, which catches any whitespace.
Your final regex should look like this:
^\s+$
The ^ marks the beginning of the line, + indicates we are looking for any combination of whitespace (from a single character to many repeating whitespaces), and $ marks the end of the line. You can try this out at a regex expression evaluation site like this: https://regexr.com/3s12e
I would highly recommend testing this by putting it in audit mode or applying it to a test user first. Transport rules should always be tested first
To create your transport rule:
1. Create a New Transport Rule
2. Hit 'More Options' at the bottom
3. Select 'Apply this rule if...'
4. Select 'Subject matches these text patterns'
5. Enter the regex
6. Enter any other conditions if needed
7. Select the action to perform (block message)
- Boris BahesJul 07, 2018Copper Contributor
I tried with single space in message subject, but message was delivered to user.