From 00cd9cf735178946a7b43711018a911835f2751d Mon Sep 17 00:00:00 2001 From: moodler Date: Sun, 15 Aug 2004 14:17:22 +0000 Subject: [PATCH] Removed HALFOPEN as per http://moodle.org/mod/forum/discuss.php?d=11115 --- auth/pop3/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/pop3/lib.php b/auth/pop3/lib.php index a383905756..bd78bc29d5 100644 --- a/auth/pop3/lib.php +++ b/auth/pop3/lib.php @@ -26,7 +26,7 @@ function auth_user_login ($username, $password) { } error_reporting(0); - $connection = imap_open($host, $username, $password, OP_HALFOPEN); + $connection = imap_open($host, $username, $password); error_reporting($CFG->debug); if ($connection) { -- 2.39.5