Implements error handling #11
Prints IMAP errors and alerts to the nextcloud log. Signed-off-by: Anojh Thayaparan <anojh@hotmail.com>
This commit is contained in:
10
lib/imap.php
10
lib/imap.php
@@ -67,8 +67,14 @@ class OC_User_IMAP extends \OCA\user_external\Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$mbox = @imap_open($this->mailbox, $username, $password, OP_HALFOPEN, 1);
|
$mbox = @imap_open($this->mailbox, $username, $password, OP_HALFOPEN, 1);
|
||||||
imap_errors();
|
OC::$server->getLogger()->error(
|
||||||
imap_alerts();
|
'ERROR: IMAP Error: ' . print_r(imap_errors(), true),
|
||||||
|
['app' => 'user_external']
|
||||||
|
);
|
||||||
|
OC::$server->getLogger()->error(
|
||||||
|
'ERROR: IMAP Warning: ' . print_r(imap_alerts(), true),
|
||||||
|
['app' => 'user_external']
|
||||||
|
);
|
||||||
if($mbox !== false) {
|
if($mbox !== false) {
|
||||||
imap_close($mbox);
|
imap_close($mbox);
|
||||||
$uid = mb_strtolower($uid);
|
$uid = mb_strtolower($uid);
|
||||||
|
|||||||
Reference in New Issue
Block a user