如何在Exchange2010集线器传输环境中配置catch-all?

发布于 2024-10-08 18:46:10 字数 238 浏览 1 评论 0原文

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

你知道在集线器传输环境中完成它的方法是什么吗?

This link is explaining how to do it in an edge transport environment, indicating that it is not relevant for hub-transport.
http://technet.microsoft.com/en-us/library/bb691132(EXCHG.80).aspx

do you know what is the way to get it done in hub-transport environment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的憧憬 2024-10-15 18:46:10

您需要在 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 Management Shell 并执行以下命令:

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

You need to use the CatchAllAgent on CodePlex. This was written to work with Exchange 2007 but it does work with 2010 as well.

The key trick is to install it in the TransportRoles directory as per these links:

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

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

1) download the ZIP

2) unzip to "C:\Program Files\Microsoft\Exchange Server\TransportRoles\agents\catchall"
[or wherever the TransportRoles\agents path is]

3) Edit the config.xml file in this directory to define the domains to be handled

4) Run Exchange Management Shell end execute these commands:

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) Send some test mails to see if it works!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文