C#从Windows服务中保存Exchange .EML文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#从Windows服务中保存Exchange .EML文件相关的知识,希望对你有一定的参考价值。

我目前正在编写Windows服务以登录特定的Exchange帐户,获取任何新电子邮件,解析它们,并将电子邮件保存在相应的文件夹中。

除了保存电子邮件之外,一切都很完美。

相关的代码块(try / catch块和不相关的东西被移除以保持简短): -

设置服务

ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
service.Credentials = new WebCredentials(emailAddress, password);
service.AutodiscoverUrl(emailAddress, RedirectionUrlValidationCallback);
CheckForNewEmails(service);

获取和检查新电子邮件

private static void CheckForNewEmails(ExchangeService service)
{
    int offset = 0;
    int pageSize = 50;
    bool more = true;
    ItemView view = new ItemView(pageSize, offset, OffsetBasePoint.Beginning);
    view.PropertySet = PropertySet.IdOnly;
    FindItemsResults<Item> findResults;
    List<EmailMessage> emails = new List<EmailMessage>();

    while (more)
    {
        findResults = service.FindItems(WellKnownFolderName.Inbox, view);
        foreach (var item in findResults.Items)
        {
            emails.Add((EmailMessage)item);
        }
        more = findResults.MoreAvailable;
        if (more)
        {
            view.Offset += pageSize;
        }
    }

    if (emails.Count > 0)
    {
        PropertySet properties = (BasePropertySet.FirstClassProperties);
        service.LoadPropertiesForItems(emails, properties);
        var mailItems = new List<DatabaseService.MailItem>();
        var dbService = new DatabaseService();
        var defaultUser = dbService.GetDefaultUser(defaultUserID);

        foreach (var email in emails)
        {
            var mailItem = new DatabaseService.MailItem();
            mailItem.mail = email;
            mailItem.MessageID = email.InternetMessageId;
            mailItem.Sender = email.Sender.Address;
            dbService.FindLinks(service, ref mailItem, defaultUser);
            mailItems.Add(mailItem);
            LogMessage += (string.Format("Message ID : {1}{0}Sent : {2}{0}From : {3}{0}Subject : {4}{0}Hash : {5}{0}{6}{0}{0}", Environment.NewLine,
                                         mailItem.MessageID ,
                                         email.DateTimeSent.ToString("dd/MM/yyyy hh:mm:ss"),
                                         email.Sender,
                                         email.Subject,
                                         mailItem.Hash,
                                         mailItem.LinkString
                                         ));
        }
    }
}

找出应该链接到的人

public void FindLinks(ExchangeService service, ref MailItem mailItem, User defaultUser)
{
    string address = mailItem.Sender;

    // get file hash
    var tempPath = Path.GetTempPath();
    var fileName = GetFilenameFromSubject(mailItem);
    var fullName = Path.Combine(tempPath, fileName);
    SaveAsEML(service, mailItem, fullName);
    var sha = new SHA256Managed();
    mailItem.Hash = Convert.ToBase64String(sha.ComputeHash(File.OpenRead(fullName)));
    File.Delete(fullName);

    using (var db = DatabaseHelpers.GetEntityModel())
    {
        // Do all the linking stuff
    }
}

最后,问题区域:将文件保存到磁盘(在本例中为临时文件夹,以便我可以获取文件哈希,检查它是不是重复(例如CC'd等))

通过StackOverflow和其他各种来源,似乎有两种方法可以做到这一点: -

1)使用MailItem.Load方法

private string SaveAsEML(ExchangeService service, MailItem mailItem, string savePath)
{
    using (FileStream fileStream = File.Open(savePath, FileMode.Create, FileAccess.Write))
    {
        mailItem.mail.Load(new PropertySet(ItemSchema.MimeContent));
        fileStream.Write(mailItem.mail.MimeContent.Content, 0, mailItem.mail.MimeContent.Content.Length);
    }
}

使用上面的代码,文件被创建并具有正确的内容。

但是,在此点之后尝试访问任何电子邮件属性会导致Null Exception崩溃(也会发生大崩溃,没有Try / Catch或UnhandledException陷阱会捡起它,只会杀死服务)

在上面的代码中,这一行崩溃了整个服务: -

LogMessage += (string.Format("Message ID : {1}{0}Sent : {2}{0}From : {3}{0}Subject : {4}{0}Hash : {5}{0}{6}{0}{0}", Environment.NewLine,
               mailItem.MessageID ,
               email.DateTimeSent.ToString("dd/MM/yyyy hh:mm:ss"),
               email.Sender,
               email.Subject,
               mailItem.Hash,
               mailItem.LinkString
));

具体来说,引用email.DateTimeSent

我在这行之前直接添加了一些诊断代码: -

if (email == null) { Log it's null; } else { Log NOT null;}
if (email.DateTimeSent == null) { Log it's null; } else { Log NOT null; }

第一行记录NOT null,因此电子邮件仍然存在。

但是,第二行会立即崩溃并出现null异常错误,而不记录任何内容。

如果我注释掉SaveAsEML行(service,mailItem,fullName);从FindLinks然后一切都很完美(当然除了文件没有保存)。

2)绑定属性集

private string SaveAsEML(ExchangeService service, MailItem mailItem, string savePath)
{
    using (FileStream fileStream = File.Open(savePath, FileMode.Create, FileAccess.Write))
    {
        PropertySet props = new PropertySet(EmailMessageSchema.MimeContent);
        var email = EmailMessage.Bind(service, mailItem.mail.Id, props);
        fileStream.Write(mailItem.mail.MimeContent.Content, 0, mailItem.mail.MimeContent.Content.Length);
    }
}

这样做,没有任何崩溃,它通过每个电子邮件就好了,并可以引用email.DateTimeSent和所有其他属性。

不幸的是,它创建了零长度文件,没有内容。

现在我已经把头撞到墙上好几个小时了(我花了一个小时的时间在各处添加诊断,只是为了追踪引用属性时发生的崩溃),这无疑是我忽略的一些微不足道的事情,所以如果某种灵魂可以指出出于我的愚蠢,我将非常感激!

编辑:

通过在使用之前保存属性的值,我能够轻松地解决上述问题: -

foreach (var email in emails)
{
    var dateTimeSent = email.DateTimeSent;
    var sender = email.Sender;
    var subject = email.Subject;
    var mailItem = new DatabaseService.MailItem();
    mailItem.mail = email;
    mailItem.MessageID = email.InternetMessageId;
    mailItem.Sender = email.Sender.Address;
    dbService.FindLinks(service, ref mailItem, defaultUser);
    mailItems.Add(mailItem);
    LogMessage += (string.Format("Message ID : {1}{0}Sent : {2}{0}From : {3}{0}Subject : {4}{0}Hash : {5}{0}{6}{0}{0}", Environment.NewLine,
                                 mailItem.MessageID,
                                 dateTimeSent.ToString("dd/MM/yyyy hh:mm:ss"),
                                 sender,
                                 subject,
                                 mailItem.Hash ?? "No Hash",
                                 mailItem.LinkString ?? "No Linkstring"
                                 ));
}

这允许我使用保存文件的MailItem.Load方法,从而完成我在此特定情况下所做的事情。

但是,此服务还需要执行其他操作,而且我真的不想保存我需要访问的每个属性的副本。

答案

这会失败的原因

    private string SaveAsEML(ExchangeService service, MailItem mailItem, string savePath)
    {
        using (FileStream fileStream = File.Open(savePath, FileMode.Create, FileAccess.Write))
        {
            PropertySet props = new PropertySet(EmailMessageSchema.MimeContent);
            var email = EmailMessage.Bind(service, mailItem.mail.Id, props);
            fileStream.Write(mailItem.mail.MimeContent.Content, 0, mailItem.mail.MimeContent.Content.Length);
        }
    }

您是否已使用Bind在电子邮件变量中使用MimeContent加载消息,然后您还没有使用它。 mailItem.mail根本不会链接到作为此操作的一部分创建的电子邮件变量(即使它们是服务器上的同一对象)。在本地,这些只是两个独立的变量。 EWS是客户端/服务器,因此您发出请求,Managed API将返回表示操作结果的本地对象。但是该对象是断开连接的,因此当您执行上面的绑定时,它只生成另一个客户端对象来表示该操作的结果。例如,以上应该是

     private string SaveAsEML(ExchangeService service, MailItem mailItem, string savePath)
    {
        using (FileStream fileStream = File.Open(savePath, FileMode.Create, FileAccess.Write))
        {
            PropertySet props = new PropertySet(EmailMessageSchema.MimeContent);
            var email = EmailMessage.Bind(service, mailItem.mail.Id, props);
            fileStream.Write(email.MimeContent.Content, 0, email .MimeContent.Content.Length);
        }
    }

以上是关于C#从Windows服务中保存Exchange .EML文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用c#在Exchange邮件服务器中连接和创建新的邮件ID?

Outlook exchange 一直提示邮件过满,无法发送,已经清空了垃圾箱,也把服务器上的邮件保存到本地,求解

将Exchange2010 public folder迁移到Exchange2016

exchange2016 4节点完整安装之证书配置

windows server 7月更新导致exchange的问题

Install Exchange Server 2013 on Windows Server 2008