培训
模块
Add a custom domain in Microsoft 365 - Training
This module provides instruction on how to add a custom domain to your Microsoft 365 deployment. It also examines the DNS requirements that are necessary to support a new domain.
原始 KB 编号: 4014346
尝试将收件人域添加到 Microsoft Exchange Online 中的任何出站连接器时,会收到以下错误消息:
超出了此请求的管理限制。
如果出站连接器上的收件人域列表包含超过 1266 个域,则会出现此问题。
若要解决此问题,请按照下列步骤操作:
确保添加到收件人域列表中的出站连接器的域数不大于 1266。
对于其他域,请创建一个新的出站连接器,该连接器的配置与触发错误的配置类似。 将剩余域添加到新创建的出站连接器。
若要确定现有连接器中的域数,请在 Exchange Online PowerShell 中运行以下 cmdlet:
$outboundconnector=get-outboundconnector "Name of the outbound connector"
$outboundconnector.recipientdomains.count
若要通过 PowerShell 将新的域集添加到现有连接器,而无需通过 Exchange Online 管理中心手动添加每个域,请执行以下步骤:
创建列出所有域的 .csv 文件,并确保有列标题。 在以下示例中,列标题名称为 Domainname:
Domainname |
---|
Contoso.com |
Fabrikam.com |
将数据从 .csv 文件导入名为 domainname 的变量:
$domainname=Import-Csv -Path "Actual path of the csv file"
通过运行以下 cmdlet,将域追加到现有域名集:
foreach ($entry in $domainname){$outboundconnector.RecipientDomains+=$entry.domainname}
备注
$outboundconnector
使用步骤 3 中的 cmdlet 填充。$entry.columnname
($entry.domainname
) 。通过运行以下 cmdlet 将更改提交到出站连接器:
Set-OutboundConnector $outboundconnector.identity -recipientdomains $outboundconnector.RecipientDomains
仍然需要帮助? 转到 Microsoft 社区
培训
模块
Add a custom domain in Microsoft 365 - Training
This module provides instruction on how to add a custom domain to your Microsoft 365 deployment. It also examines the DNS requirements that are necessary to support a new domain.
文档
NDR 错误代码 450 4.4.317 (无法连接到远程服务器 [Message=UntrustedRoot]) - Exchange
提供 NDR 450 4.4.317 的修补程序。
发送或接收电子邮件时的 SocketError - Exchange
修复了使用传输层安全性 (TLS) 1.1 或 TLS 1.0 发送或接收电子邮件时邮件流上出现错误的问题。