Fix for POP3 by disabling TLS explicitly.
based on this: http://moodle.org/mod/forum/discuss.php?d=1884
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ function auth_user_login ($username, $password) {
|
||||
|
||||
switch ($CFG->auth_pop3type) {
|
||||
case "pop3":
|
||||
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3}INBOX";
|
||||
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/notls}INBOX";
|
||||
break;
|
||||
case "pop3cert":
|
||||
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/ssl/novalidate-cert}INBOX";
|
||||
|
||||
Reference in New Issue
Block a user