Individual Customization For Clutter Feature

2

I understand Clutter is based off of individual patterns, but I want to whitelist email from a sender. For example, if an e-mail was sent to my Clutter folder, I want that specific e-mail not to go there anymore. Is there a setting for me to stop that single e-mail from going into that folder?

lwilliams

Posted 2016-04-13T20:47:30.533

Reputation: 39

Answers

1

It is not possible, but Clutter learns. Sooner or later it will stop sorting your important messages. You can find more details in the Office Support article.

thims

Posted 2016-04-13T20:47:30.533

Reputation: 8 081

1@Abraxas: just updated the answer. – thims – 2016-04-14T13:53:43.460

0

You can do this - but not from the client mailbox. Below I use subject but you can scope this to a sender, recipient, or any other property supported by the transport rules.

You have to create a transport rule to catch these messages, than add the following to the message header:

X-MS-Exchange-Organization-BypassClutter : true

So in Exchange Admin Center - add a new transport rule

enter image description here

Or If you wanted to do this in PowerShell it would look like this

New-TransportRule -Name "Bypass Clutter" -SubjectContainsWords "Vendor Invoice" -SetHeaderName "X-MS-Exchange-Organization-BypassClutter" -SetHeaderValue "true"

Anything with the subject of "Vendor Invoice" will not be processed by clutter

Jesus Shelby

Posted 2016-04-13T20:47:30.533

Reputation: 1 248