3

我正在使用以下代码从 gmail 下载我的所有电子邮件,但不幸的是,返回的电子邮件总数与帐户中的电子邮件总数不匹配。特别是,我能够收到前 43 封邮件,但我在收件箱中还有 20 多封邮件丢失了。也许这是对可以撤回的数量的某种限制(?)。提前感谢您提供的任何帮助!

import imaplib, email, base64

def fetch_messages(username, password):
    messages = []
    conn = imaplib.IMAP4_SSL("imap.gmail.com", 993)
    conn.login(username, password)
    conn.select()
    typ, data = conn.uid('search', None, 'ALL')

    for num in data[0].split():
        typ, msg_data = conn.uid('fetch', num, '(RFC822)')
        for response_part in msg_data:
            if isinstance(response_part, tuple):
                messages.append(email.message_from_string(response_part[1]))
        typ, response = conn.store(num, '+FLAGS', r'(\Seen)')
    return messages
4

1 回答 1

1

我使用以下内容获取所有电子邮件。

resp,data = mail.uid('FETCH', '1:*' , '(RFC822)')

并获得id我使用的所有 s:

result, data = mail.uid('search', None, "ALL")
print data[0].split()

给出:

['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', ... etc ]

编辑

在我的情况下,以下返回 202 个日期,这超出了 OP 正在寻找的日期,并且是正确的数字。

resp,data = mail.uid('FETCH', '1:*' , '(RFC822)')
messages = [data[i][1].strip() for i in xrange(0, len(data), 2)] 
for msg in messages:
    msg_str = email.message_from_string(msg)
    print msg_str.get('Date')
于 2013-02-25T20:40:07.470 回答