使用Mail.dll与Microsoft Exchange Imap版本4

时间:2013-01-22 10:36:38

标签: c# .net exchange-server

我正在使用mail.dll来阅读电子邮件。早些时候我正在阅读来自Gmail帐户的电子邮件,而且每件事情都运转正常。现在我需要将应用程序移动到另一台服务器并从microsoft exchange读取邮件.Below是我正在使用的代码

using (Imap imap = new Imap())
{
   imap.Connect("server-name", port number);
   imap.Login("username", "password");
   imap.SelectInbox();
   List<long> uids = imap.Search(Flag.Seen);

   if (uids.Count > 0)
   {
       string eml = imap.GetMessageByUID(uids[0]);
       IMail email = new MailBuilder().CreateFromEml(eml);
       imap.GetMessageByUID(uids[0]);
       lbResponse.Text = email.Subject;
   }
    else
    {
       lbResponse.Text = "No mails found";
     }
  imap.Close();
}

我已经使用telnet验证了端口和服务器,这是正确的。但我得到“无法从传输连接中读取数据。连接尝试失败,因为连接方在一段时间后没有正确响应,或者由于连接主机未能响应而建立连接失败”错误。请帮忙。

1 个答案:

答案 0 :(得分:3)

确保在Exchange服务器上启用了IMAP:

http://technet.microsoft.com/en-us/library/bb124489.aspx

还考虑使用:

imap.Search(Flag.Seen)

SearchFlag 在最新版本中已过时:http://www.limilabs.com/mail