Exchange Mailbox ForwardingSMTPAddress setting not working

For a variety of different reasons, sometimes there is the necessity of users or administrators to automatically forward e-mails addressed to one mailbox to another mailbox. To achieve this there are several options such as Outlook Inbox Rules or Transport Rules. Another option is to configure the mailbox itself using the ForwardingAddress setting which can also be configured using the Exchange Management Console/Exchange Admin Center.

However, in some cases the end recipient is a SMTP address external to the local Exchange environment. As ForwardingAddress only works with local recipients, we can create a contact for the target mailbox and then use ForwardingAddress with the contact. But creating a contact might not be desirable, so a more “direct” way is to use the ForwardingSmtpAddress setting instead (which can only be configured through the Shell). As such, what most administrators do is something like this:

Set-Mailbox nuno -ForwardingSMTPAddress [email protected] -DeliverToMailboxAndForward $True

After doing this, the administrator notices that e-mails are still not being automatically forwarded… Let us see why.

Within Exchange and Office 365, administrators can create remote domains. By default, every Office 365 tenant leverages the “*” domain. When a specific remote domain does not exist, the “*” remote domain setting are applied to the message. However, this is not true for on-premises Exchange environments where, by default, there are no remote domains.

A property of a remote domain is the AutoForwardEnabled property, which allows administrators to define if auto-forwarding is allowed on e-mails destined to the domain specified. By default auto-forwarding in Office 365 is allowed to all domains, but not in on-premises environments.

This means that administrators need to create a remote domain for the forwarding addresses’ domain (or a generic one), in my example, somedomain.com, and ensure AutoForwardEnabled is set to $True (which it is by default when creating a new remote domain).

New-RemoteDomain -Name ExternalDomain -DomainName somedomain.com

Get-RemoteDomain ExternalDomain | Select DomainName, AutoForwardEnabled

Note that using ForwardingAddress is a way for an administrator to bypass forwarding settings on remote domains, meaning it is not necessary to create a remote domain for the forwarding to work.

Bottom line: if you want to use the ForwardingSmtpAddress setting, make sure you have a remote domain for that SMTP addresses’ domain with AutoForwardEnabled set to $True.

About The Author

6 thoughts on “Exchange Mailbox ForwardingSMTPAddress setting not working”

  1. Richard Waldron

    Excellent post, thank you. This was driving me insane, turned out the AutoForwardEnabled property you highlighted was thing I had missed. Cheers!

  2. Can I set Forwarding through the GUI AND also set the SMTP forwarding to allow two forwards on one mailbox? We are having this issue BUT we need to use the SMTP for a second internal forward. I tried setting up a group to forward to but it wasnt available in the gui. Right now were using a mailbox rule followed by the GUI forward but would like to be able to see when a forward is in effect from the gui in one place.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Scroll to Top