如何在 google imap 服务器上的 python imap lib 中运行 XLIST 命令?
我想从 python lib 运行 XLIST 命令,有人知道怎么做吗? (python 文档中没有关于此命令的任何内容)。此问题解决此问题。
I want to run XLIST command from python lib, anyone know how? (there is nothing about this command in python docs). This question address this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
imaplib 未实现此命令。
我知道这有点黑客行为,但出于完全相同的原因我确实需要运行 XLIST。
看看list()在imaplib源代码中是如何实现的,我继承了imaplib的IMAP4_SSL类并添加了xlist()命令。因此,在 adv_imaplib.py 中添加:
现在只需创建 ADV_IMAP4_SSL 而不是 IMAP4_SSL 并调用 xlist(),对我有用。
This command is not implemented by imaplib.
I know this is a bit of a hack but I really needed to run XLIST for the exact same reason.
Looking at how list() was implemented in imaplib source, I inherited the imaplib's IMAP4_SSL class and added the xlist() command. So, in adv_imaplib.py add:
now just create ADV_IMAP4_SSL instead of IMAP4_SSL and call xlist(), works for me.
解决此问题的另一种方法是使用第三方 IMAPClient 库。
它支持 XLIST 开箱即用。
Another way to approach this is to use the 3rd party IMAPClient library.
It supports XLIST out of the box.