Thunderbird 扩展 - 迭代文件夹中的消息
我正在编写一个雷鸟扩展,它应该监视一个或多个文件夹(从应用程序的左窗格),如果有消息添加到受监视的文件夹之一,它们会通过 webdav 自动发送到服务器(用于存档)。
我在此处找到了如何迭代所有帐户中的所有文件夹。我的问题是如何迭代文件夹中的消息(邮件)
I'm writing a thunderbird extension that should monitor one or more folders (from the left pane of the application) and if there are messages added to one of the monitored folders, they are sent automatically via webdav to a server (for archiving).
I found here how to iterate over all folders in all accounts. My question is how can I iterate over the messages (mails) in a folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
nsiMsgFolder 界面应该提供您需要的一切。如果您想对传入的消息做出反应,我会注册一个 nsiFolderListener 。每次将消息添加到文件夹时,它都会收到通知。
您可以检查这些代码段是否对您有帮助。
我还发现了一份较旧的文档,详细介绍了邮件事件系统。它被标记为需要技术审查,但可能会给您一个不错的起点。
The nsiMsgFolder interface should provide everything you need. If you want to react on incoming messages, I'd register a nsiFolderListener. It gets notified everytime a message is added to the folder.
You could check if these snippets help you.
I also found a somewhat older document detailing the mail event system. It is flagged as in need of technical review but might give you a decent starting point.