我需要创建一个连接到 IMAP 服务器并监听新邮件的服务(或控制台)应用程序。我目前正在尝试使用MailKit,但是在尝试从文档中找出如何完成此操作时遇到了麻烦。
我最接近的是来自 this 帖子。据我所知,这篇文章正在将连接设置为空闲模式,并偶尔发送 NoOP 以尝试保持连接处于事件状态。我不完全清楚的是如何接收新邮件通知。
MailKit 文档似乎表明有可用的警报事件。我试过 Hook ,但这似乎没有解决任何问题。
这是我尝试过的:
var cts = new CancellationTokenSource();
testIDLEMailNotification(cts.Token);
...
private static void testIDLEMailNotification(CancellationToken token)
{
using (var client = ClientCreateAndConnect(token))
{
while(!token.IsCancellationRequested)
{
using (var done = new CancellationTokenSource())
{
using (var timer = new System.Timers.Timer(9 * 60 * 1000))
{
timer.Elapsed += (sender, e) => done.Cancel();
timer.AutoReset = false;
timer.Enabled = true;
try
{
client.Idle(done.Token, token);
client.NoOp(token);
}
catch (OperationCanceledException)
{
break;
}
}
}
}
}
}
private static ImapClient ClientCreateAndConnect(CancellationToken token)
{
var client = new ImapClient();
client.Connect("server.domain", 993, true, token);
client.AuthenticationMechanisms.Remove("XOAUTH");
client.Authenticate("[email protected]", "password",token);
client.Inbox.Open(MailKit.FolderAccess.ReadWrite, token);
client.Alert += client_Alert;
return client;
}
static void client_Alert(object sender, AlertEventArgs e)
{
Console.WriteLine("New Email or something.");
}
最佳答案
我找到了一个样本 here 。我一直在 IMAPClient 上寻找某种事件,但没有任何与消息通知特别相关的事件。
但是,正如示例所示,事件发生在 IMAPFolder 类上……现在我考虑了一下,这是有道理的。
希望这对其他人有帮助。
关于c# - MailKit : Obtaining new mail notification from IMAP server,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26370747/