Exchange admin center bugs for manage email forwarding

STKM2024 0 Reputation points
2024-07-02T01:55:16.78+00:00

I have set up the email forwarding in the Exchange Admin Center, where it is mentioned that "The mailbox owner will not be able to view and change this forwarding address."

But I found that user logging into their mailbox can see which destination email it is being forwarded to, and they are able to turn it off.

then i tried the PowerShell command advised by community but it is still did not work,

Set-Mailbox -Identity <User ID> -DeliveryToMailboxAndForward $False -ForwardingAddress $Null

What should I do so that users cannot view or make any changes to the email forwarding set by the admin?

Microsoft Exchange Online
PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,321 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Vasil Michev 100.2K Reputation points MVP
    2024-07-02T06:20:11.7833333+00:00

    It's the other way around. The user can see/manage forwarding set via the ForwardingSMTPAddress parameter, so that's the one you need to null. Here's (a bit old) article where I've explained the difference between the two: https://www.enowsoftware.com/solutions-engine/m365-exchange-online-center/simplified-forwarding-settings-in-office-365

    0 comments No comments

  2. Xintao Qiao-MSFT 1,560 Reputation points Microsoft Vendor
    2024-07-02T09:55:28.0666667+00:00

    Hi, STKM2024

    Based on your description, I understand that the mailbox owner should not have been able to view and modify the forwarding address after setting up the forwarding feature, but this is not the case.

    After my tests, when the forwarding function is turned on in the EAC, it is shown in the following figure. The mailbox owner will not receive messages that need to be forwarded, and there will be no errors. This is probably the best outcome you want.

    User's image

    But in OWA, if the mailbox owner turns on the forwarding feature as shown in the image below, then something strange happens.

    User's image

    At this point, the mailbox owner will be able to receive the message that needs to be forwarded and will be able to view and modify the forwarding function, which is consistent with the situation in the thread you gave it.

    User's image

    When I turned off forwarding for the mailbox owner in OWA, everything was back to normal again. Therefore, it is recommended that you check and try disabling the forwarding feature in OWA. After the EAC setup is complete, this operation does not affect the mail forwarding functionality.

    In addition, for you to give the cmdlet, I need to clarify the following.

    If the value of -ForwardingAddress is $null, the forwarding email address is not configured, that is, the message cannot be forwarded to the specified mailbox, and this cmdlet may not work. For more information about this cmdlet, please refer to Vasil Michev.

    If my answer is helpful to you, please mark it as the answer so that other users can refer to it. Thank you for your support and understanding.