这是我第一次从事 Exchange Server 开发工作。下面是我正在使用的一个简单的传输代理,该代理应该简单地更新电子邮件主题,如下面的代码所示。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Exchange.Data.Transport;
using Microsoft.Exchange.Data.Transport.Smtp;
namespace MyAgents
{
public sealed class MyAgentFactory : SmtpReceiveAgentFactory
{
public override SmtpReceiveAgent CreateAgent(SmtpServer server)
{
return new MyAgent();
}
}
public class MyAgent : SmtpReceiveAgent
{
public MyAgent()
{
this.OnEndOfData += new EndOfDataEventHandler(MyEndOfDataHandler);
}
private void MyEndOfDataHandler(ReceiveMessageEventSource source, EndOfDataEventArgs e)
{
e.MailItem.Message.Subject = "This message passed through my agent: " + e.MailItem.Message.Subject;
}
}
}
下面是我用来安装代理的 Powershell 脚本。
Net Stop MSExchangeTransport
Install-TransportAgent -Name MyAgent -AssemblyPath EmailLogger.dll -TransportAgentFactory MyAgents.MyAgentFactory
Enable-TransportAgent -Identity MyAgent
Net Start MSExchangeTransport
使用 Exchange 命令行管理程序成功安装代理。
现在,当我发送/接收电子邮件作为交换时,电子邮件主题不会被修改。电子邮件有其原始主题。我不知道为什么?
我还执行了以下链接中提到的步骤来调试代理,但 Visual Studio 调试器没有命中断点。
http://www.sf-tools.net/Messaging/tabid/55/EntryId/163/Exchange-2010-Transport-Agent.aspx
http://omarjames.com/blog/index.php/debugging-exchange-transport-agent/
我的系统配置
我正在使用 Microsoft 从以下链接提供的 Exchange Server 2007 虚拟机
http://www.microsoft.com/en-pk/download/details.aspx?id=14901
我还在 VM 上安装了 Visual Studio 2008 进行调试。
请帮我解决问题?