Manage remote domains in Exchange Online (2024)

  • Article
  • 7 minutes to read

Remote domains define settings based on the destination domain of each email message. All organizations have a default remote domain named "Default" that's applied to the domain "*". The default remote domain applies the same settings to all email messages regardless of the destination domain. However, you can configure specific settings for a specific destination domain.

The following table shows the default values for common settings:

SettingDefault
Out of office repliesSend external out-of-office replies to people on the remote domain.
Automatic repliesAllow automatic replies or automatically forwarded messages to be sent to people on the remote domain.
Delivery and non-delivery reportsAllow delivery and non-delivery reports to be sent to people on the remote domain.
Meeting forward notificationsDon't allow meeting forward notifications to be sent to people on the remote domain.
Rich Text format (RTF)Follow settings created by each user in Outlook or Outlook on the web (formerly known as Outlook Web App) when a message is sent to people on the remote domain.
Supported character setDo not specify a MIME or non-MIME character set if the character set isn't specified in the message sent to the remote domain.

For information about when to configure remote domains, descriptions of the available settings, and information about how remote domain settings override per-user settings, see Remote domains in Exchange Online.

What do you need to know before you begin?

  • Estimated time to complete each procedure: 5 minutes.

  • You need permissions before you can perform this procedure or procedures. To see what permissions you need, see the "Mail flow" entry in the Feature permissions in Exchange Online topic.

  • To open the Exchange admin center (EAC), see Exchange admin center in Exchange Online. To connect to Exchange Online PowerShell, see Connect to Exchange Online PowerShell.

  • For information about keyboard shortcuts that may apply to the procedures in this topic, see Keyboard shortcuts for the Exchange admin center.

Tip

Having problems? Ask for help in the Exchange forums. Visit the forums at Exchange Online or Exchange Online Protection.

Create and configure remote domains

Note

  • If you create a remote domain for a specific destination domain, and a setting for the specific remote domain conflicts with the same setting in the default remote domain, the setting for the specific remote domain overrides the setting in the default remote domain.
  • Once you've created a remote domain, you can't change or replace the domain inside the remote domain. Instead, create and configure a new remote domain with the new domain name.

Use the EAC to create and configure a remote domain

New EAC

  1. Go to Mail flow > Remote domains. The Remote domain screen appears.

  2. Click + Add a remote domain. The Name the domain screen appears.

  3. In the Name text box, enter a descriptive name for the domain.

  4. In the Remote Domain text box, enter the full domain name. Use the wildcard character (*) for all subdomains of a specified domain, for example, *.contoso.com.

  5. Click Next. The Email reply types screen appears.

  6. Define the following settings:

  • In the Out of Office reply types section, specify which type of out-of-office replies should be sent to people at this domain.

  • In the Automatic replies section, specify whether you want to allow automatic replies, automatic forwarding, or both.

  1. Click Next. The Message reporting screen appears.

  2. Specify whether you want to allow delivery reports and non-delivery reports by checking the respective check boxes.

  3. Click Next. The Text and character set screen appears.

  4. Define the following settings:

    • In the Use Rich-text format pane, specify whether to follow each user's message settings, or whether to always or never preserve RTF formatting. Selecting Never means that RTF messages are sent as plain text or HTML.
    • In the Supported Character Set pane, specify which character set to use (if the message doesn't specify the character set) by choosing from the MIME character set or Non-MIME character set drop-down list.
  5. Click Next. The Review screen appears.

  6. Review the remote domain settings, and click Save.

The new remote domain is created and added to the list.

Classic EAC

  1. Go to Mail flow > Remote domains.

  2. To create a new domain:

    1. Click New Manage remote domains in Exchange Online (1).
    2. In the Name box, enter a descriptive name for the domain.
    3. In the Remote Domain box, enter the full domain name. Use the wildcard character (*) for all subdomains of a specified domain, for example, *.contoso.com.
  3. To change settings for the default domain, select Default, and then select Edit.

  4. Select the options you want:

    • In the Out of Office reply types section, specify which type of out-of-office replies should be sent to people at this domain.
    • In the Automatic replies section, specify whether you want to allow automatic replies, automatic forwarding, or both.
    • In the Message reporting section, specify:
    • Whether you want to allow delivery reports and non-delivery reports.
    • If a meeting set up by someone on the remote domain is forwarded to another person in your organization, whether the notification message should go to the meeting organizer on the remote domain.
    • In the Use Rich-text format section, specify whether to follow each user's message settings, or whether to always or never preserve RTF formatting. Selecting Never means that RTF messages are sent as plain text or HTML.
    • In the Supported Character Set area, specify which character set to use if the message doesn't specify the character set.
  5. Click Save. If you created a new remote domain, it is added to the list.

Remove remote domains

Note

  • You can't remove the default remote domain.
  • When you remove a remote domain, the default remote domain settings will then apply to messages sent to that domain.
  • Removing a remote domain doesn't disable mail flow to the remote domain.

Use the EAC to remove a remote domain

New EAC

  1. Go to Mail flow > Remote domains. The Remote domain screen appears.

  2. Select a remote domain, and then click Delete Manage remote domains in Exchange Online (2).

  3. In the warning dialog box, click Confirm. The remote domain is deleted.

Classic EAC

  1. Go to Mail flow > Remote domains.

  2. Select a remote domain, and then click Delete Manage remote domains in Exchange Online (3).

  3. In the warning dialog box, select Yes.

Use Exchange Online PowerShell to create and configure a remote domain

After you create the remote domain, you can configure the settings (you can't create the remote domain and configure the settings in one step).

Step 1: Create the remote domain

To create a new remote domain, use the following syntax:

New-RemoteDomain -Name "<Unique Name"> -DomainName <single SMTP domain | domain with subdomains>

This example creates a remote domain for messages sent to the contoso.com domain.

New-RemoteDomain -Name Contoso -DomainName contoso.com

This example creates a remote domain for messages sent to the contoso.com domain and all its subdomains.

New-RemoteDomain -Name "Contoso and subdomains" -DomainName *.contoso.com

For detailed syntax and parameter information, see New-RemoteDomain.

Step 2: Configure the remote domain settings

To configure the settings for a remote domain, use the following syntax:

Set-RemoteDomain -Identity <Name> [-AllowedOOfType <External | InternalLegacy | ExternalLegacy | None>] [-AutoForwardEnabled <$true | $false>] [-AutoReplyEnabled <$true | $false>] [-CharacterSet <SupportedCharacterSet>] [-DeliveryReportEnabled <$true | $false>] [-NonMimeCharacterSet <SupportedCharacterSet>] [-TNEFEnabled <$true | $false>]

This example disables automatic replies, automatic forwarding, and out-of-office replies to recipients at all remote domains that aren't specified with their own remote domain.

Set-RemoteDomain -Identity Default -AutoReplyEnabled $false -AutoForwardEnabled $false -AllowedOOFType None

This example sends internal out-of-office replies to users at the remote domain named Contoso.

Set-RemoteDomain -Identity Contoso -AllowedOOFType InternalLegacy

This example prevents delivery reports and non-delivery reports from being sent to users at Contoso.

Set-RemoteDomain -Identity Contoso -DeliveryReportEnabled $false -NDREnabled $false

This example sends all messages to Contoso using Transport Neutral Encapsulation Formation (TNEF) encoding, rather than MIME encoding. This usage of TNEF preserves Rich Text format in messages.

Set-RemoteDomain -Identity Contoso -TNEFEnabled $true

This example sends all messages to Contoso using MIME encoding, which means that all RTF messages are always converted to HTML or plain text.

Set-RemoteDomain -Identity Contoso -TNEFEnabled $false

This example uses the message-format settings the user has defined in Outlook or Outlook on the web for encoding messages.

Set-RemoteDomain -Identity Contoso -TNEFEnabled $null

This example uses the Korean (ISO) character set for MIME messages sent to Contoso.

Set-RemoteDomain -Identity Contoso -CharacterSet iso-2022-kr

This example specifies using the Unicode character set for non-MIME messages sent to Contoso.

Set-RemoteDomain -Identity Contoso -NonMimeCharacterSet utf-8

For detailed syntax and parameter information, see Set-RemoteDomain.

Use Exchange Online PowerShell to remove a remote domain

To remove a remote domain, use the following syntax:

Remove-RemoteDomain -Identity <Remote Domain Name>

This example removes the remote domain named Contoso.

Remove-RemoteDomain -Identity Contoso

For detailed syntax and parameter information, see Remove-RemoteDomain.

Manage remote domains in Exchange Online (2024)

FAQs

What are remote domains in Exchange Online? ›

What is a “Remote Domain”? Remote Domains are an organizational setting that allow you to control certain message types such as “Out of Office” and “Non-Delivery Reports”. In an Exchange Hybrid environment, they are configured independently in both the on-premises and Exchange Online organization.

How to set Remotedomain in Exchange Online? ›

Go to Mail flow > Remote domains. To change settings for the default domain, select Default, and then select Edit. Select the options you want: In the Out of Office reply types section, specify which type of out-of-office replies should be sent to people at this domain.

What is the difference between remote domain and accepted domain in Exchange? ›

In the case of receiving email, accepted domains also include those SMTP namespaces for which Exchange will receive a message yet continue to send it onwards to other external email systems. Remote domains are simply those SMTP namespaces that are external to Exchange.

What are three strong benefits in using Exchange Online? ›

Here are a few reasons Microsoft Exchange Online for secure email to better protect your business's data is a frontrunner.
  • Makes Your Life Easier. ...
  • Accessible From Anywhere. ...
  • User-Friendly. ...
  • Shared Calendar. ...
  • Shared Mailboxes. ...
  • Cost Saving. ...
  • Compliance. ...
  • Protect Your Sensitive Data (Data Loss Prevention)

What are the three roles in domain controller? ›

A domain has one RID master, one PDC emulator, and one infrastructure master. A forest has one schema master and one domain naming master. If a forest contains multiple domains, each domain has its own RID master, PDC emulator, and infrastructure master.

What types of domains are there in Exchange? ›

There are three types of accepted domains: authoritative, internal relay, and external relay.

How does autodiscover work in Exchange Online? ›

Exchange automatically creates at installation the virtual directory autodiscover in IIS, the frontend Client Access services web site that clients connect to. This allows Outlook to discover the Exchange mailbox settings so that users don't have to deal with manually configuring advanced settings.

How to allow external forwarding to specific domain Office 365? ›

Log in to your Office 365 Security & Compliance portal and go to Threat management->Anti-spam section. Click the arrow next to Outbound spam filter policy setting and click the Edit policy button. Click the arrow next to Automatic forwarding, then select On - Forwarding is enabled from the dropdown. Click Save.

How do I whitelist in Exchange Online? ›

How to Whitelist Email Address in Office 365
  1. Open the Exchange Admin Center.
  2. Click on the Mail Flow drop down and select Rules.
  3. Add a new rule for Bypass Spam Filtering.
  4. From the Apply this rule if… ...
  5. In the field to the right of the Check names button, type the email address you want to allow.

What are the 4 types of domain? ›

Types of Domain
  • Generic Top-Level Domains (gTLD)
  • Country Code Top-Level Domains (ccTLD)
  • Internationalized Country Code Top-Level Domains (IDN ccTLD)
  • Subdomain.
Jul 19, 2022

Why should you have 2 domain controllers? ›

The reason why businesses should invest in both a secondary Domain Controller and backups is simple. In addition to being able to restore a failed DC fast thanks to a reliable and recent backup, a secondary DC will be able to keep things running even when one has failed.

Why do you need 2 domain controllers? ›

Actually, In a larger environment, at least two domain controllers at each physical site should be DNS servers. This provides redundancy in the event that one DC goes offline unexpectedly. Note that domain-joined machines must be configured to use multiple DNS servers in order to take advantage of this.

What is the difference between Office 365 and Exchange Online? ›

With Microsoft Exchange Server you, (or your IT support company), are in full control of the hardware and infrastructure, whereas with Office 365 you do not have direct access to this. The difference can impact on the level of control you have over configuration, upgrades and system changes.

What is the difference between on premise and Exchange Online? ›

Cost. In terms of cost, Exchange Online is quite flexible and allows you to pay for licenses on a per-user basis. If you opt for Exchange On-Premises, you will hold the responsibility of arranging and maintaining the Exchange server and server hardware, in addition to acquiring Client Access Licenses.

What is difference between E3 and E5? ›

"What is the difference between m365 E3 and E5?" Microsoft 365 E5 includes all the features in the E3 plan, with additional ones such as Advanced Threat Protection for security against business email compromise and PSTN conferencing to facilitate Skype for Business meetings.

What are the three core domains? ›

The three domains are the Archaea, the Bacteria, and the Eukarya. Prokaryotic organisms belong either to the domain Archaea or the domain Bacteria; organisms with eukaryotic cells belong to the domain Eukarya.

How many types of domain controllers are there? ›

There are two major types of a Domain Controller—read-only and read-write. Read-only: The read-only Domain Controller (DC) comprises a copy of the AD DS database, which is read-only. Read-write: A read-write Domain Controller comes with the ability to read and write to the AD DS database.

What are the 5 roles of Active Directory? ›

Currently in Windows there are five FSMO roles:
  • Schema master.
  • Domain naming master.
  • RID master.
  • PDC emulator.
  • Infrastructure master.
Dec 1, 2021

What are the 7 types of domain? ›

Domain Name Types
  • .com – commercial business (the most common TLD)
  • org – organizations (typically, nonprofit)
  • gov – government agencies.
  • edu – educational institutions.
  • net – network organizations.
  • mil – military.

What are the 4 common top-level domains? ›

The most common usages of generic top-level domains include:
  • .com - for commercial sites.
  • org - for organizations.
  • net - for networks.
  • info - for information platforms.
  • biz - for businesses.
Jan 18, 2020

Is Autodiscover a Cname or a record? ›

Autodiscover relies on a correct CNAME DNS record for your domain. Please contact your DNS hosting provider or DNS registrar to make the changes below. DNS hosting providers typically provide a control panel or portal where you can make DNS changes.

Do I need an autodiscover DNS entry? ›

In order for Exchange account to function properly in Outlook, you must have a special DNS record set up for your domain name which points to the VIPRE Autodiscover server.

What protocol does autodiscover use? ›

The location of Autodiscover servers is made available via the Autodiscover HTTP Service Protocol, as described in [MS-OXDISCO].

Why does Office 365 not allow external forwarding? ›

By changing this "Outbound Spam Filter Policy," it opens up a companywide security hole for all users in the organization. There was a good reason Microsoft up and blocked email forwarding for ALL Office 365 tenants one day as email forwarding is a known event in security breaches.

How do I forward traffic from one domain to another? ›

Redirecting a new domain or subdomain (legacy)
  1. Navigate to the Hosted Domains page. The Hosted Domains page opens.
  2. Click the Add Hosting to a Domain / Sub-Domain button.
  3. Scroll down to the Redirect section.
  4. Enter the information in the following fields: ...
  5. Click the Redirect this domain button to complete the set up.
Jan 3, 2023

How do I allow certain domains in Outlook? ›

Open your Safe Senders settings. Under Safe senders and domains, enter the email address or domain you want to add, and select Add. To add a mailing list to your safe senders, enter the mailing list under Safe mailing lists and select Add. Select Save.

What is remote domain in Exchange Admin Center? ›

The remote domain settings override settings that your users might configure in Outlook or Outlook on the web (formerly known as Outlook Web App), or that you configure in the Exchange admin center (EAC) or Exchange Online PowerShell.

What is remote mailbox in Exchange? ›

A remote mailbox is a mail user in Active Directory that's associated with a mailbox in the cloud-based service. For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax.

How do I remote into my domain? ›

Joining a domain through a remote access VPN connection
  1. Set the VPN DNS settings to point to the AD server on the remote location where the system would join the domain.
  2. Connect the VPN while being on the local system account on the PC and check if the primary DNS is the AD server by conducting a nslookup.

What does domain mean in Microsoft Exchange? ›

Frequently, the account ID is the part of your e-mail address before the "@" symbol, and the domain is the part of your e-mail address after the "@" symbol. However, this is not always true. For some accounts, your user name is your complete e-mail address.

Top Articles
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 6804

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.