该链接说明了在边缘传输环境中的操作方式,表明它与集线器传输无关。
http://technet.microsoft.com/en-us/library/bb691132(EXCHG.80).aspx

您是否知道在集线器传输环境中完成此操作的方法是什么?

最佳答案

您需要在CodePlex上使用CatchAllAgent。编写该代码可以与Exchange 2007一起使用,但也可以与2010年一起使用。

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

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

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

1)下载ZIP

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)发送一些测试邮件,看看是否有效!

关于exchange-server-2010 - 如何在Exchange2010集线器传输环境中配置全包?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4499261/

10-13 03:37