此链接说明了如何在边缘传输环境中执行此操作,表明它与集线器传输无关。 http://technet.microsoft.com/en-us/library/bb691132(EXCHG.80).aspx
你知道在集线器传输环境中完成它的方法是什么?
答案 0 :(得分:3)
您需要在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)发送一些测试邮件,看它是否有效!