Remote Server returned '420 4.2.0 Recipient deferred because there is no Mdb'

通常NDR会给我们排错带来很明确的指示

今天聊一个我日常运维中遇到的问题,首先我的环境是“单域多站点”模式,共有3个Site的Exchange,收件流依次是Exchange Online Protection---A Site Cas---A Site MBX---对应收件地址数据库。

根据NDR,发现,邮件从EOP下来后,反复在A Site的MBX中跳跃,直道完全失败。经过ECP、ADSI的检查,发现是A Site没有正确同步其他两个Site DC的用户属性(homeMDB)

解决办法有二:

1、手动与其他DC同步

2、手动复制该属性

对于各Site DC为什么没有正确同步,就不在这里展开了

Remote Server returned '420 4.2.0 Recipient deferred because there is no Mdb'

时间: 2024-10-09 05:39:19

Remote Server returned '420 4.2.0 Recipient deferred because there is no Mdb'的相关文章

写Storage Table时报The remote server returned an error: (409) Conflict.

今天在往 Azure Storage Table中写入一条记录时,在刚开始老报 The remote server returned an error: (409) Conflict. 的异常,过了一阵子又好了.百思不得其解,后来终于在MSDN中找到了一段解释: When a table is successfully deleted, it is immediately marked for deletion and is no longer accessible to clients. Th

System.Net.WebException : The remote server returned an error: (415) UNSUPPORTED MEDIA TYPE

I am having problems with a bit of code that accesses a restful web service. Running this code, it errors out at var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse(); and the exception returned is: "System.Net.WebException : The remote se

WebService:The remote server returned an error: (400) Bad Request

开发工具:VS2010.开发组件:WebService.运行环境:Windows 今天一个同事在进行计费接口联调试时,发现了一个非常奇怪的问题:接口在家里环境测试,一切正常,但是部署到现网环境之后,连续调用几次接口就会出现错误:The remote server returned an error: (400) Bad Request,然后回收一下WebService自己的程序池,再调用又可以了,再连续调用几次,又出现了上面的问题. 他来找我帮忙查问题,在了解整个过程之后,我就直接根据经验,设置

HttpWebRequest WebExcepton: The remote server returned an error: (407) Proxy Authentication Required.

1. Supply the credentials of the Currently Logged on User to the Proxy object similar to this: // Begin code change by jeff // Obtain the 'Proxy' of the Default browser. IWebProxy theProxy = aReq.Proxy; // Print the Proxy Url to the console. if (theP

The remote server returned an error: (401) Unauthorized - 最妖root case,mark下

昨天用.net console application读取sharepoint list列表,在本地一切正常,一传到服务器上就报401未授权的错误,尝试了各种办法都没有解决.最后发现原因是我的AD账号只能在本机使用,在其他电脑上都不能用,非常雷人的root cause.也许是被管AD账号的同事坑了,也许是我的人品昨天有点差,特mark下,一来作为提醒,二来也是说明做事不要随便,走正规流程就不会出现类似的囧境. 原文地址:https://www.cnblogs.com/61007257Steven

selenium Remote Server 实现原理

selenium作为一个出色的web automation框架,被越来越多的企业采用究其原因,框架设计的比较remarkable, 作为一个开源的框架,能够开辟出一套协议,以至于针对app测试的appium采取相同的strategy.使用的是webdriver protocol的扩展版. 为什么说这个框架设计的比较好?究竟好在哪里? 先从表面上看: selenium automation framework 支持多语言,java.python.c#.JavaScript.Perl.ruby ..

Jmeter-Maven-Plugin高级应用:Remote Server Configuration

Remote Server Configuration Pages 12 Home Adding additional libraries to the classpath Advanced Configuration Basic Configuration Configuring the jvm that the jmeter process runs in FAQ Log Levels Modifying Properties Proxy Configuration Remote Serve

Python GET REMOTE SERVER'S INFO

1 #!/usr/bin/env python 2 #--*-- coding:utf-8 --*-- 3 # Python Network Programming Cookbook -- Chapter – 1 4 # This program is optimized for Python 2.7. 5 # It may run on any other version with/without modifications. 6 import socket 7 def get_remote_

java.io.IOException: Server returned HTTP response code: 411 for URL

今日调用一post方式提交的http接口,此接口在测试环境ip调用时无问题,但在生产环境通过域名调用时一直报如下错误: java.io.IOException: Server returned HTTP response code: 411 for URL 百度之后得到:在调用时,添加如下两行代码即可,今行文以记之: /*解决411*/ httpConnection.setRequestProperty("Content-Length","0"); DataOutp