0

I followed the docs to set a mailbox to handle quarantined email:

https://learn.microsoft.com/en-us/exchange/antispam-and-antimalware/antispam-protection/configure-quarantine-mailboxes?view=exchserver-2019

I used Set-ContentFilterConfig -QuarantineMailbox spamQ@mydomain.com

Now I don't want this and just want spam going to the individuals Junk E-Mail folder. I can't find how to remove this setting.

Thank you.

Neal
  • 9,487
  • 15
  • 58
  • 101

1 Answers1

0

this way you can disable quarantine

Set-ContentFilterConfig -SCLQuarantineEnabled $false
  • Please refrain from answering with code-only. Note that you are not only answering to the OP, but also to any future readers of the question. Thus, please edit the post to contain an explanation as to why this line of code works. – José María Aug 12 '20 at 18:48