We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 316e57c + 1883b0c commit 6f4d19dCopy full SHA for 6f4d19d
1 file changed
lib/imap.php
@@ -72,6 +72,10 @@ public function checkPassword($uid, $password) {
72
$uid = $pieces[0];
73
}
74
} else {
75
+ OC::$server->getLogger()->error(
76
+ 'ERROR: User has a wrong domain! Expecting: '.$this->domain,
77
+ ['app' => 'user_external']
78
+ );
79
return false;
80
81
@@ -101,7 +105,13 @@ public function checkPassword($uid, $password) {
101
105
$uid = mb_strtolower($uid);
102
106
$this->storeUser($uid, $groups);
103
107
return $uid;
108
+ } else {
109
110
+ 'ERROR: Could not connect via roundcube lib: '.$rcube->error,
111
112
104
113
114
+
115
116
117
0 commit comments