forked from ticketfrei/ticketfrei
excepted IMAP4 error with unknown cause
This commit is contained in:
parent
ace28ee25a
commit
c9d5f7441a
|
@ -70,7 +70,11 @@ class Mailbot(object):
|
||||||
crawl for new mails.
|
crawl for new mails.
|
||||||
:return: msgs: (list of report.Report objects)
|
:return: msgs: (list of report.Report objects)
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
rv, data = self.mailbox.select("Inbox")
|
rv, data = self.mailbox.select("Inbox")
|
||||||
|
except imaplib.IMAP4.abort:
|
||||||
|
logger.error("Crawling Mail failed", exc_info=True)
|
||||||
|
rv = False
|
||||||
msgs = []
|
msgs = []
|
||||||
if rv == 'OK':
|
if rv == 'OK':
|
||||||
rv, data = self.mailbox.search(None, "ALL")
|
rv, data = self.mailbox.search(None, "ALL")
|
||||||
|
|
Loading…
Reference in a new issue