Dec 07 2022 09:18 AM
How can I enable quarantine notifications for the preset strict protection policies. There is no way to assign a quarantine policy to strict protection policies.
Dec 07 2022 11:33 PM
Dec 07 2022 11:37 PM
Dec 08 2022 08:14 AM
Dec 08 2022 08:37 AM - edited Dec 08 2022 09:11 AM
(from: https://learn.microsoft.com/en-us/microsoft-365/security/office-365-security/quarantine-policies)
The default policies don't have notifications enabled:
It's also not possible to edit the two default quarantine policies (DefaultFullAccessPolicy and AdminOnlyAccessPolicy):
I could create a new quarantine policy, but how should I assign the quarantine policy to the strict policy?
There is no option to edit the strict policy.
Or should I just go the PowerShell way?
Dec 08 2022 11:52 PM
Dec 09 2022 02:15 AM
@Vasil Michev thanks! I think this is not the case in my tenant. When I check the policy using PowerShell I get the following output:
Get-HostedContentFilterPolicy "Strict Preset Security*" | fl
SpamQuarantineTag : DefaultFullAccessPolicy
HighConfidenceSpamQuarantineTag : DefaultFullAccessPolicy
PhishQuarantineTag : DefaultFullAccessPolicy
HighConfidencePhishQuarantineTag : AdminOnlyAccessPolicy
BulkQuarantineTag : DefaultFullAccessPolicy
EndUserSpamNotificationFrequency : 3
EnableEndUserSpamNotifications : True
EndUserSpamNotificationCustomFromAddress :
EndUserSpamNotificationCustomFromName :
EndUserSpamNotificationCustomSubject :
EndUserSpamNotificationLanguage : Default
EndUserSpamNotificationLimit : 0
Looks like it's not enabled, or am I confusing someting?
Dec 09 2022 08:16 AM
SolutionDec 09 2022 08:19 AM
Dec 30 2022 03:55 PM
@Kiril-- It can't be done; those things are backed in. But there's nothing in the "Strict" or "Standard" policies that you can't duplicate by creating a new policy yourself that includes user notification. I did that when I realized I would have to release all the junk from quarantine myself -- no way was that happening.
Jan 02 2023 12:52 AM
You can use PowerShell to modify some parts of the Standard and Strict preset policies.
This command show you which policy is applied for a High confidence spam message action:
Get-HostedContentFilterPolicy "Strict Preset Security Policy Name" | fl Name,HighConfidenceSpamAction,HighConfidenceSpamQuarantineTag
Now, if you have a Quarantine policy with notifications enabled (e.g. NotificationEnablePolicy) you can update the preset policy:
Set-HostedContentFilterPolicy "Strict Preset Security Policy Name" -HighConfidenceSpamQuarantineTag NotificationEnablePolicy