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
BENT17
Mar 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 Reid
Mar 06, 2019MVP
Inbox 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
[-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?
- BENT17Mar 07, 2019Brass Contributor
Any help on this one?
- Mar 07, 2019This should help you out! Also read the comments!
https://community.spiceworks.com/topic/2168259-office-365-can-i-change-default-junk-email-behaviour-for-all-users
Adam