我正在使用以下代码从 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