Forum Discussion
BENT17
Mar 06, 2019Brass Contributor
Disable Junk E-mail filtering for Kiosk mailboxes
I am trying to find a way to Disable Junk E-mail filtering for Kiosk mailboxes and get all mail in Inbox
Brian Reid
Mar 06, 2019MVP
Interested in why you want to do this? If its junk it should not go into the inbox.
- BENT17Mar 06, 2019Brass Contributor
Yes not a normal issue however we have an application which picks up emails from inbox and cant add other folders. There are some legitimate emails in junk which are getting omitted, so easy workaround is to disable junkmail and all goes to inbox.
- Brian ReidMar 06, 2019MVPInbox rule - change SCL to 0. That might work. Or Set-Mailbox -SCL values on the specific mailbox. You have [-SCLDeleteEnabled <$true | $false>]
[-SCLDeleteThreshold <Int32>]
[-SCLJunkEnabled <$true | $false>]
[-SCLJunkThreshold <Int32>]
[-SCLQuarantineEnabled <$true | $false>]
[-SCLQuarantineThreshold <Int32>]
[-SCLRejectEnabled <$true | $false>]
[-SCLRejectThreshold <Int32>]
See https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/set-mailbox?view=exchange-ps- BENT17Mar 07, 2019Brass Contributor
UPDATE:
So I managed to disable junkmail for all mailboxes within a specific licence group using the following:
Get-Mailbox | Set-MailboxJunkEmailConfiguration –Enabled $False
Now I want to have this by default for any new mailboxes created this is disabled by default. Is this possible?