Microsoft Exchange on Azure

jeff_hoffelner 21 Reputation points
2021-01-23T22:30:51.413+00:00

I have a Microsoft Exchange plan in Azure and it is sending some items to the Junk folder. Is there a way in Azure to turn this off and put all new mail automatically in the in-box.

Exchange | Exchange Server | Management
{count} votes

1 answer

Sort by: Most helpful
  1. Joyce Shen - MSFT 16,701 Reputation points
    2021-01-25T03:05:45.547+00:00

    Hi @jeff_hoffelner

    How many users in your organization encountered the issue regular messages moved to junk folder? Did you configure any 3rd party spam filter for your organization?

    In Exchange side, we could check if there is any related information recorded in the message trace log why the mails are moved to junk folder.

    Also, we could disable the junk email rule on all users with below command, introduced in the official document: Configure junk email settings on Exchange Online mailboxes

    $All = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited; $All | foreach {Set-MailboxJunkEmailConfiguration $_.Name -Enabled $false}  
    

    In addition, if you configured any 3rd party spam filters, which will also lead to the mails go to junk folder like the scenario 1 list here: Manage mail flow using a third-party cloud service with Exchange Online


    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
     


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.