Java 中的 IMAP 空闲
除了 Sun Java Mail 之外,还有支持 IDLE 命令的 Java IMAP 库吗?
我一直在使用Sun 的JavaMail,它运行良好,只是它有相当多的内存开销。
Are there any Java IMAP libraries with support for the IDLE commands, other than Sun Java Mail?
I've been using Sun's JavaMail, and it works well, except that it has quite a bit of memory overhead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Chilkat 的这个商业产品是一种替代方案:http://www.chilkatsoft.com/java-imap。 ASP
This commercial product from Chilkat is an alternative: http://www.chilkatsoft.com/java-imap.asp
您可以从 k9mail 中提取 IMAP 目录。但是,如果您只想空闲并查找新邮件,那么在 TCP 之上写入听起来是一个不错的选择。然后,您可以使用另一个作业(甚至可能在另一个虚拟机上运行)来检查观察者每次注意到的情况。
You could extract the IMAP directory from k9mail. But if all you want to do is IDLE and look for new mail, writing on top of TCP sounds like a good alternative. You can then use another job (perhaps running on another VM, even) to check every time the watcher notices anything.