Skip to content

Commit

Permalink
Catch all ActiveSync exceptions, not just FolderGone.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Sep 3, 2014
1 parent 261e5c6 commit c1cae19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -1928,7 +1928,7 @@ public function sendMail(
// available.
try {
$this->_imap->appendMessage($sf, $mailer->getSentMail(), $flags);
} catch (Horde_ActiveSync_Exception_FolderGone $e) {
} catch (Horde_ActiveSync_Exception $e) {
$this->_logger->err($e->getMessage());
}
}
Expand Down

0 comments on commit c1cae19

Please sign in to comment.