From: moodler Date: Fri, 5 Dec 2003 03:22:34 +0000 (+0000) Subject: Fixes for POP3 and TLS (new option) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=07eb7fa7b88fe1679a2ad448b1c677b10049358e;p=moodle.git Fixes for POP3 and TLS (new option) --- diff --git a/auth/pop3/config.html b/auth/pop3/config.html index bb97d87753..1f5acfa623 100644 --- a/auth/pop3/config.html +++ b/auth/pop3/config.html @@ -3,7 +3,7 @@ $config->auth_pop3host = "127.0.0.1"; } if (!isset($config->auth_pop3type)) { - $config->auth_pop3type = "pop3"; + $config->auth_pop3type = "pop3notls"; } if (!isset($config->auth_pop3port)) { $config->auth_pop3port = "110"; @@ -23,7 +23,7 @@

auth_pop3type: - auth_pop3type) { case "pop3": + $host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3}INBOX"; + break; + case "pop3notls": $host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/notls}INBOX"; break; case "pop3cert":