Python 3.4 imaplib抛出异常:unexpected response: 'b'''


用python写了一小段代码,用IMAP协议读取qq邮箱中的邮件。但是,当我调用fetch函数时,python会抛出异常。代码如下:


 import imaplib

m = imaplib.IMAP4_SSL('imap.qq.com')
m.login('[email protected]', 'my_qq_password')
status, data = m.list()
print(status)

m.select('INBOX')
status, data = m.search(None, 'ALL')
for msgid in data[0].split():
    status, msgparts = m.fetch(msgid, '(RFC822)')
    print(msgid)

m.logout()

异常的出现比较随机。举个例子,有时读到第5封会抛出"imaplib.abort: socket error: EOF"异常,或者抛出"imaplib.abort: unexpected response: 'b'''"异常;有时读到第10封,甚至第100封才会抛出这样的异常,非常奇怪。搞不懂是我的代码问题,还是qq邮箱IMAP服务器问题。
有高手来解释一下吗?谢谢!

qq邮箱 python imaplib socket

yyyiii 9 years, 8 months ago

Your Answer