mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 12:32:08 +02:00
Fix for POP3 by disabling TLS explicitly.
based on this: http://moodle.org/mod/forum/discuss.php?d=1884
This commit is contained in:
parent
48705c8d40
commit
17b88d1910
@ -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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user