如何在 google imap 服务器上的 python imap lib 中运行 XLIST 命令?

发布于 2024-12-20 06:51:12 字数 165 浏览 1 评论 0原文

我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦归所梦 2024-12-27 06:51:12

imaplib 未实现此命令。

我知道这有点黑客行为,但出于完全相同的原因我确实需要运行 XLIST。

看看list()在imaplib源代码中是如何实现的,我继承了imaplib的IMAP4_SSL类并添加了xlist()命令。因此,在 adv_imaplib.py 中添加:

import imaplib

imaplib.Commands['XLIST'] =  ('AUTH', 'SELECTED')

class ADV_IMAP4_SSL(imaplib.IMAP4_SSL):

  def xlist(self, directory='""', pattern='*'):
    """(X)List mailbox names in directory matching pattern. Using Google's XLIST extension

    (typ, [data]) = <instance>.xlist(directory='""', pattern='*')

    'data' is list of XLIST responses.
    """
    name = 'XLIST'
    typ, dat = self._simple_command(name, directory, pattern)
    return self._untagged_response(typ, dat, name)

现在只需创建 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:

import imaplib

imaplib.Commands['XLIST'] =  ('AUTH', 'SELECTED')

class ADV_IMAP4_SSL(imaplib.IMAP4_SSL):

  def xlist(self, directory='""', pattern='*'):
    """(X)List mailbox names in directory matching pattern. Using Google's XLIST extension

    (typ, [data]) = <instance>.xlist(directory='""', pattern='*')

    'data' is list of XLIST responses.
    """
    name = 'XLIST'
    typ, dat = self._simple_command(name, directory, pattern)
    return self._untagged_response(typ, dat, name)

now just create ADV_IMAP4_SSL instead of IMAP4_SSL and call xlist(), works for me.

绅士风度i 2024-12-27 06:51:12

解决此问题的另一种方法是使用第三方 IMAPClient 库。

它支持 XLIST 开箱即用

Another way to approach this is to use the 3rd party IMAPClient library.

It supports XLIST out of the box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文