2017-04-08 73 views
0

我想通過IMAP使用Google帳戶收到G-mail。 所以我發現了一些基本的代碼如何使用IMAP。 我用我的Google帳戶運行它。但我得到一些錯誤。 我不知道函數或參數的作用,所以請幫助我,如果你有Gmail帳戶,並知道功能的作用。IMAP調用Gmail期間出現「SELECT command error BAD」錯誤

這是我的代碼,我隱藏了我的帳戶信息,所以真實帳戶與我的不同。

#!/usr/bin/env python 

import sys 
import imaplib 
import getpass 
import email 
import email.header 
import datetime 
EMAIL_ACCOUNT = "[email protected]" 
EMAIL_PASSWORD = "password" 
# Use 'INBOX' to read inbox. Note that whatever folder is specified, 
# after successfully running this script all emails in that folder 
# will be marked as read. 
EMAIL_FOLDER = "Top Secret/PRISM Documents" 
def process_mailbox(M): 

rv, data = M.search(None, "ALL") 
if rv != 'OK': 
    print("No messages found!") 
    return 
    for num in data[0].split(): 
     rv, data = M.fetch(num, '(RFC822)') 
     if rv != 'OK': 
      print("ERROR getting message", num) 
      return 
     msg = email.message_from_bytes(data[0][1]) 
     hdr = 
     email.header.make_header(email.header.decode_header(msg['Subject'])) 
     subject = str(hdr) 
     print('Message %s: %s' % (num, subject)) 
     print('Raw Date:', msg['Date']) 
     # Now convert to local date-time 
     date_tuple = email.utils.parsedate_tz(msg['Date']) 
     if date_tuple: 
      local_date = datetime.datetime.fromtimestamp(
       email.utils.mktime_tz(date_tuple)) 
      print ("Local Date:", \ 
       local_date.strftime("%a, %d %b %Y %H:%M:%S")) 
M = imaplib.IMAP4_SSL('imap.gmail.com') 
try: 
    rv, data = M.login(EMAIL_ACCOUNT, EMAIL_PASSWORD) 
except imaplib.IMAP4.error: 
    print ("LOGIN FAILED!!! ") 
    sys.exit(1) 
print(rv, data) 
rv, mailboxes = M.list() 
if rv == 'OK': 
    print("Mailboxes:") 
    print(mailboxes) 
rv, data = M.select(EMAIL_FOLDER) 
if rv == 'OK': 
    print("Processing mailbox...\n") 
    process_mailbox(M) 
    M.close() 
else: 
    print("ERROR: Unable to open mailbox ", rv) 
M.logout() 

這是錯誤的結果。 enter image description here

這是文本錯誤。

C:\Users\user\AppData\Local\Programs\Python\Python36-32\python.exe C:/Users/user/PycharmProjects/Server/imap.py 
OK [b'[email protected] authenticated (Success)'] 
Mailboxes: 
[b'(\\HasNoChildren) "/" "INBOX"', b'(\\HasChildren \\Noselect) "/" "[Gmail]"', b'(\\Flagged \\HasNoChildren) "/" "[Gmail]/&vMTUXNO4ycDVaA-"', b'(\\HasNoChildren \\Sent) "/" "[Gmail]/&vPSwuNO4ycDVaA-"', b'(\\HasNoChildren \\Junk) "/" "[Gmail]/&wqTTONVo-"', b'(\\Drafts \\HasNoChildren) "/" "[Gmail]/&x4TC3Lz0rQDVaA-"', b'(\\All \\HasNoChildren) "/" "[Gmail]/&yATMtLz0rQDVaA-"', b'(\\HasNoChildren \\Important) "/" "[Gmail]/&yRHGlA-"', b'(\\HasNoChildren \\Trash) "/" "[Gmail]/&1zTJwNG1-"'] 
Traceback (most recent call last): 
    File "C:/Users/user/PycharmProjects/Server/imap.py", line 73, in <module> 
    rv, data = M.select(EMAIL_FOLDER) 
    File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\imaplib.py", line 737, in select 
    typ, dat = self._simple_command(name, mailbox) 
    File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\imaplib.py", line 1188, in _simple_command 
    return self._command_complete(name, self._command(name, *args)) 
    File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\imaplib.py", line 1019, in _command_complete 
    raise self.error('%s command error: %s %s' % (name, typ, data)) 
imaplib.error: SELECT command error: BAD [b'Could not parse command'] 

Process finished with exit code 1 
+0

我將錯誤粘貼爲文本,但由於路徑而難以找出。 – Jung

+0

如果您將「EMAIL_FOLDER」更改爲與「郵箱」列表中某個值相匹配,是否會改變這些內容? –

+0

...順便說一句,它看起來像你的語法突出顯示是錯誤的 - 「def process_mailbox(M):'後面沒有縮進。將來,請考慮選擇您的*整個*代碼並使用'{}'按鈕縮進區域以作爲代碼。 –

回答

0

的調用

M.select(EMAIL_FOLDER) 

不包括任何郵箱的返回從:

rv, mailboxes = M.list() 

確保郵箱名稱是有效的。

+1

此外,我相信imaplib有一個錯誤,它不引用文件夾名稱,如果他們有空格,所以可能需要手動完成。 – Max

相關問題