summaryrefslogtreecommitdiff
path: root/program/steps/mail/search.inc
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-10-14 10:37:32 +0000
committeralecpl <alec@alec.pl>2010-10-14 10:37:32 +0000
commit2d1d68bc7e1683bca869fcd1eca517ef209097d8 (patch)
treee34ad5dcf2584cc2794ddb0b0b8343e491aea304 /program/steps/mail/search.inc
parent0f0c17ad9ef6dc5f82e7147a16f2cab7aae657db (diff)
- Display IMAP errors for LIST/THREAD/SEARCH commands, fixes #1486905
Diffstat (limited to 'program/steps/mail/search.inc')
-rw-r--r--program/steps/mail/search.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/program/steps/mail/search.inc b/program/steps/mail/search.inc
index db46ce428..90d1c374c 100644
--- a/program/steps/mail/search.inc
+++ b/program/steps/mail/search.inc
@@ -122,6 +122,11 @@ if (!empty($result_h)) {
if ($search_str)
$OUTPUT->show_message('searchsuccessful', 'confirmation', array('nr' => $IMAP->messagecount(NULL, 'ALL')));
}
+// handle IMAP errors (e.g. #1486905)
+else if ($err_code = $IMAP->get_error_code()) {
+ $err_str = $IMAP->get_error_str();
+ $OUTPUT->show_message('servererrormsg', 'error', array('msg' => $err_str));
+}
else {
$OUTPUT->show_message('searchnomatch', 'notice');
}