3

此链接正在解释如何在边缘传输环境中执行此操作,表明它与集线器传输无关。 http://technet.microsoft.com/en-us/library/bb691132(EXCHG.80).aspx

你知道在枢纽运输环境中完成它的方法是什么吗?

4

1 回答 1

3

您需要在 CodePlex 上使用CatchAllAgent。这是为与 Exchange 2007 一起使用而编写的,但它也适用于 2010。

关键技巧是按照以下链接将其安装在 TransportRoles 目录中:

http://catchallagent.codeplex.com/discussions/218519?ProjectName=catchallagent

http://catchallagent.codeplex.com/discussions/62204?ProjectName=catchallagent

1) 下载压缩包

2) 解压缩到"C:\Program Files\Microsoft\Exchange Server\TransportRoles\agents\catchall" [或 TransportRoles\agents 路径所在的任何位置]

3)编辑该目录下的config.xml文件,定义要处理的域

4) 运行 Exchange 命令行管理程序结束执行这些命令:

install-transportagent -Name "CatchAll Agent" -TransportAgentFactory:CatchAll.CatchAllFactory -AssemblyPath:"C:\Program Files\Microsoft\Exchange Server\TransportRoles\agents\catchall\CatchAllAgent.dll"

get-transportagent

enable-transportagent "CatchAll Agent"

net stop MSExchangeTransport

net start MSExchangeTransport

5)发送一些测试邮件,看看它是否有效!

于 2011-06-17T10:46:00.520 回答