使用imaplib尝试搜索收件箱时始终失败,并显示命令错误:无法解析命令

时间:2019-12-21 08:45:48

标签: python gmail imaplib

尝试自动从gmail帐户下载和存储附件。我有一个类似的脚本在工作-但是在V2上,我试图添加日志记录和文件重命名。除了日志记录/重新命名之外,我相信两个文件都是相同的,但是在此文件上,尝试搜索新邮件时失败。


try:
    imapSession.select('[Gmail]/All Mail')
        typ, data = imapSession.search(None, 'UNSEEN', 'ALL')
        if typ != 'OK':
            f = open('/home/pi/nahl/nahlmail/errorlog.csv', 'a+')
            currentdate = time.strftime('%Y-%m-%d %H:%M:%S')
            f.write('{0}, Error Searching Inbox\r\n'.currentdate)
            f.close()

0 个答案:

没有答案