improved initial email decoding function

This commit is contained in:
Rinaldus 2016-07-25 12:05:18 +03:00
parent f73ca3e0b0
commit 9cb0d58312
Signed by: Rinaldus
GPG Key ID: C34E249005178E87
1 changed files with 2 additions and 2 deletions

View File

@ -277,8 +277,8 @@ class Mail():
return "ERROR"
def parseMail(self):
try:
self.imap.select()
typ, data = self.imap.search(None, 'ALL')
self.imap.select(readonly=True)
typ, data = self.imap.search(None, 'UNSEEN')
for num in data[0].split():
typ, data = self.imap.fetch(num, '(RFC822)')
raw_mail = data[0][1]