Use mail flow rules so messages can bypass Clutter in Exchange Online
If you want to be sure that you receive particular messages, you can create a mail flow rule (also known as a transport rule) that makes sure that these messages bypass your Clutter folder. Check out Use Clutter to sort low-priority messages in Outlook for more info on Clutter.
For additional management tasks related to mail flow rules, check out Mail flow rules (transport rules) in Exchange Online and the New-TransportRule PowerShell article. If you're new to Exchange Online PowerShell, check out Connect to Exchange Online PowerShell.
What do you need to know before you begin?
Estimated time to complete: 5 minutes
You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "Mail flow" entry in the Feature permissions in Exchange Online article.
For more information about opening and using the Exchange admin center (EAC), see Exchange admin center in Exchange Online.
To learn how to connect to Exchange Online PowerShell, see Connect to Exchange Online PowerShell.
For information about keyboard shortcuts that may apply to the procedures in this article, see Keyboard shortcuts for the Exchange admin center.
Use the Exchange admin center to create a mail flow rule to bypass the clutter folder
This example allows all messages with title "Meeting" to bypass clutter.
In the EAC, go to Mail flow > Rules.
Click New
and then select Create a new rule.
In the New rule page that opens, configure the following settings:
- Name: Enter something descriptive. For example, Bypass Clutter if the subject contains "meeting".
- Apply this rule if > The subject includes > meeting
- Do the following > Set the message header to this value > X-MS-Exchange-Organization-BypassClutter: true.
When you're finished, click Save.
Use Exchange Online PowerShell to create a mail flow rule to bypass the clutter folder
This example allows all messages with title "Meeting" to bypass clutter.
New-TransportRule -Name "<Unique rule name>" -SubjectContainsWords "Meeting" -SetHeaderName "X-MS-Exchange-Organization-BypassClutter" -SetHeaderValue "true"
Important
In this example, both X-MS-Exchange-Organization-BypassClutter
and true
are case sensitive.
For detailed syntax and parameter information, see New-TransportRule.
How do you know this worked?
You can check email message headers to see if the email messages are landing in the Inbox due to the Clutter mail flow rule bypass. Pick an email message from a mailbox in your organization that has the Clutter bypass mail flow rule applied. Look at the headers stamped on the message, and you should see the X-MS-Exchange-Organization-BypassClutter: true header. This means the bypass is working. Check out the View the internet header information for an email message article for info on how to find the header information.
Note
Calendar items (accepted, sent, or declined meetings notifications) won't contain this header.