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?

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.

  1. In the EAC, go to Mail flow > Rules.

  2. Click New Add Icon. and then select Create a new rule.

  3. 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.

    Art example: If subject contains meeting, bypass clutter.

  4. 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.