How to disable the forward option in outlook rules.

Vishnu Anand 185 Reputation points
2024-09-27T05:46:31.21+00:00

Our users are forwarding some emails to non-organization domains. Is there an option to disable the 'forward to' feature in Outlook rules or restrict forwarding to organization-controlled domains only? I know we can block this by creating a rule in the Exchange Admin Center, but are there any other options to achieve this?

User's image

Outlook
Outlook
A family of Microsoft email and calendar products.
3,803 questions
Microsoft Exchange
Microsoft Exchange
Microsoft messaging and collaboration software.
531 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 105.5K Reputation points MVP
    2024-09-27T08:40:25.0933333+00:00

    No, there is no direct method to block this option, but as you've mentioned above, you can use the tenant-wide controls to prevent forwarding. Exchange Online now blocks external forwarding by default (read here for more details), and if you need additional control you can also use mail flow rules.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Bruce Jing-MSFT 4,800 Reputation points Microsoft Vendor
    2024-09-27T09:00:38.3733333+00:00

    Hi,@Vishnu Anand

    Thanks for posting your question in the Microsoft Q&A forum.

    According to your description, you want to disable email forwarding to non-organizational domains. You can use PowerShell to create a remote domain and set the “AutoForwardEnabled” parameter to “$false”. This will prevent users from setting forwarding to the domain.

    Run the following command to create a new remote domain (replace ExternalDomain.com with the domain you want to restrict):

     New-RemoteDomain -Name "NoAutoForward" -DomainName ExternalDomain.com 
    
    

    Then, disable auto-forwarding for this domain:

     Set-RemoteDomain -Identity "NoAutoForward" -AutoForwardEnabled $false
    
    

    Remember to replace ExternalDomain.com with the actual domain you wish to restrict.

    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.

    1 person found this answer helpful.
    0 comments No comments

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.