MS Exchange Server 2003:有什么好的脚本教程吗?
我需要为 MS Exchange Server 2003 编写一个脚本来分析传入的电子邮件并将其中一些放入特定的邮箱中。当然,MSDN 上有很多有关 Exchange Server 脚本的信息,但是信息量非常庞大。是否有一些简单的教程将描述如何在 MS Exchange Server 上安装一个简单的脚本来分析传入的电子邮件?
I need to write a script for MS Exchange Server 2003 that will analyze incoming emails and put some of them into a specific mailbox. Of course it's a lot of information about Exchange Server scripting at MSDN, but amount of information there is very huge. Is it some simple tutorials available that will describe how to install a simple script on MS Exchange Server that will analyze incoming emails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信在 Exchange 2003 中实现您想要的唯一方法是编写一个 smtp 事件接收器。这是一个概述。 http://www.codeproject.com/KB/cs/csmanagementeventsinkshooks.aspx
不幸的是,事件接收器可能具有非常差的性能特征,并且通常不鼓励使用。然而,我相信这是完成你想做的事情的方法。
如果您决定走这条路,这里有一些参考资料供您参考:
http://support.microsoft.com/kb/894286 和
http://msdn.microsoft.com/en-us/library/ms998610。 ASPX
I believe the only way to accomplish what you want in exchange 2003 is to write an smtp event sink. Here is an overview. http://www.codeproject.com/KB/cs/csmanagedeventsinkshooks.aspx
Unfortunately, event sinks can be prone to have very poor performance characteristics and are generally discouraged. However, I believe that is the way to accomplish what you want to do.
If you decide to go down this path, here are a couple of references for you:
http://support.microsoft.com/kb/894286 and
http://msdn.microsoft.com/en-us/library/ms998610.aspx
试试这些? (第一个用于交换 07)
http://www.codeproject.com /KB/exchange/Exchange2007EWS-Part1.aspx
http://www.codeproject.com/KB/cs/Exchange_2003_with_WebDav.aspx
Try these? (the first one is for exchange 07)
http://www.codeproject.com/KB/exchange/Exchange2007EWS-Part1.aspx
http://www.codeproject.com/KB/cs/Exchange_2003_with_WebDav.aspx