我可以发誓这段代码几天前正在运作。我正在使用http://trixy.justinkbeck.com/2009/07/c-pop3-library-with-ssl-for-gmail.html
中的SSL二进制文件 POPClient client = new POPClient("pop.gmail.com", 995, "user@gmail.com", "qwerty", AuthenticationMethod.USERPASS, true);
int unread = client.GetMessageCount();
for (int i = 0; i < unread; i++)
{
Message m = client.GetMessage(i + 1, true);
Console.WriteLine(m.Subject);
if (m.HasAttachment)
{
Attachment a = m.GetAttachment(1);
// Problem! HasAttachment flag is set, but there's no attachments in the collection!
m.SaveAttachment(a, a.ContentFileName);
}
}
client.QUIT();
但今天,我可以阅读邮件,但附件是空的。我认为中国的惨败使他们改变了一些东西。想法?
答案 0 :(得分:2)
OpenPop.Net现在直接拥有SSL支持。它还有很多其他升级。你应该考虑转移到新版本。
答案 1 :(得分:1)
Message m = client.GetMessage(i + 1, true);
只获得标题,并将其更改为
Message m = client.GetMessage(i + 1, false);
它再次起作用。