From 07eb7fa7b88fe1679a2ad448b1c677b10049358e Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 5 Dec 2003 03:22:34 +0000 Subject: [PATCH] Fixes for POP3 and TLS (new option) --- auth/pop3/config.html | 4 ++-- auth/pop3/lib.php | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) 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": -- 2.39.5