Я могу поклясться, что этот код работал несколько дней назад. Я использую бинарные файлы SSL от http://trixy.justinkbeck.com/2009/07/c-pop3-library-with-ssl-for-gmail.html
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();
Но сегодня я могу читать почту нормально, но вложения пусты. Я думаю, что фиаско в Китае заставило их что-то изменить. Идеи?