excepted IMAP4 error with unknown cause

master
b3yond 2018-01-23 09:17:26 +01:00
parent eb00b9dba4
commit fd96cbe6c2
1 changed files with 5 additions and 1 deletions

View File

@ -70,7 +70,11 @@ class Mailbot(object):
crawl for new mails.
:return: msgs: (list of report.Report objects)
"""
rv, data = self.mailbox.select("Inbox")
try:
rv, data = self.mailbox.select("Inbox")
except imaplib.IMAP4.abort:
logger.error("Crawling Mail failed", exc_info=True)
rv = False
msgs = []
if rv == 'OK':
rv, data = self.mailbox.search(None, "ALL")