Skip to content

Commit

Permalink
Closes #189: Ignore folderclosedexception on imap scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
jendib committed Mar 5, 2018
1 parent 4f6de89 commit 1479b81
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ public void run() {
importMessage(message);
lastSyncMessageCount++;
}
} catch (FolderClosedException e) {
// Ignore this, we will just continue importing on the next cycle
} catch (Exception e) {
log.error("Error synching the inbox", e);
lastSyncError = e.getMessage();
Expand Down

0 comments on commit 1479b81

Please sign in to comment.