我正在编写一个脚本,该脚本读取电子邮件,然后根据标题答复某些内容。它会间隔检查收件箱,然后回复收件箱中的所有电子邮件。最后,它将所有已阅读的电子邮件移至已删除的文件夹:
import time
import sys
import imaplib
import smtplib
import getpass
import email
import email.header
import datetime
EMAIL_ACCOUNT = "YOUR_EMAIL_ACCOUNT"
PW = "YOUR_PASSWORD"
EMAIL_FOLDER = "INBOX"
def process_mailbox(M):
#try to log in to the mail server with your credentials
try:
rv, data = M.login(EMAIL_ACCOUNT, PW)
print(rv, data)
except imaplib.IMAP4.error: #except an error and exit
print ("LOGIN FAILED!")
sys.exit(1)
#set the mail server for reading mails
rv, data = M.select(EMAIL_FOLDER)
print(rv, data)
rv, data = M.search(None, "ALL")
# !!-----------------------------------------------------
#here rv always return "OK" therefore the next if clause
#also is always false although it should be True
if rv != 'OK': #
print("No messages found, when i tried at", datetime.datetime.now())
return
for num in data[0].split():
rv, data = Mailbox.fetch(num, '(RFC822)') #returns tuple fetch(message_set, message parts)
if rv != 'OK': #if rv (assigned above) is OK print an error message and return
print("ERROR getting message", num)
return
msg = email.message_from_bytes(data[0][1])
#decode the header and make a readable header
hdr = email.header.make_header(email.header.decode_header(msg['Subject']))
subject = str(hdr) #convert the header to a string
for num in data[0].split(): #for all the mail in the directory
box.store(num, '+FLAGS', '\\Deleted') #flag them as deleted
box.expunge() #and delete them all
Mailbox.close()
Mailbox.logout()
while True:
print("Processing mailbox...\n")
Mailbox = imaplib.IMAP4_SSL('imap.gmail.com')
process_mailbox(Mailbox)
time.sleep(10)
我在某处找到了代码if rv != "OK":
,但似乎无法正常工作(不再吗?),因为无论收件箱中是否有电子邮件,rv始终都是“确定”的。
我尝试查看IMAP文档,但未找到search
的任何参数来评估状态。
检查收件箱是否为空的正确方法是什么?
谢谢您的帮助!
答案 0 :(得分:1)
如果没有消息,则IMAP搜索ALL将返回OK和0条消息。换句话说,“确定”表示服务器能够按照您的期望进行解释和执行。备选方案为否(例如权限问题)或错误(例如语法错误)。状态正常,结果为零表示为空,另一个状态表示您不知道。
顺便说一句,我建议您在结束时只调用一次expunge,而不要在每次存储后都调用。它会执行相同的操作,并且运行速度更快。
答案 1 :(得分:0)
我已找到问题的正确答案:
rv, data = Mailbox.search()
在data
变量中返回一个简单的字符串。我只是没有打印出每次都会被覆盖的正确内容。
if data == [b'']:
print("The mailbox is empty")
return
尽可能简单。因为我从那里得到了帮助,所以我会接受阿恩特的回答。