Skip to content

Commit

Permalink
Bug: 13276 Log, and then ignore, exceptions when trying to get maillog.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 30, 2014
1 parent 4baf292 commit 459b329
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -3166,6 +3166,9 @@ protected function _getMaillogChanges(Horde_ActiveSync_Folder_Imap $folder, $ts)
$uid = $this->_imap->getUidFromMid($mid, $folder);
} catch (Horde_Exception_NotFound $e) {
continue;
} catch (Horde_ActiveSync_Exception $e) {
$this->_logger->err($e->getMessage());
continue;
}
$s_changes[] = $uid;
$verb = $this->_getLastVerb($mid);
Expand Down

0 comments on commit 459b329

Please sign in to comment.