From e85a2601ec7c982affc753dca6c582c68987c412 Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 21 Jul 2010 07:55:20 +0000 Subject: Fix default IMAP port configuration (#1486864) git-svn-id: https://svn.roundcube.net/trunk@3819 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/include/rcmail.php') diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index d644f4f09..3fa2fa2cc 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -585,7 +585,7 @@ class rcmail $imap_ssl = (isset($a_host['scheme']) && in_array($a_host['scheme'], array('ssl','imaps','tls'))) ? $a_host['scheme'] : null; if(!empty($a_host['port'])) $imap_port = $a_host['port']; - else if ($imap_ssl && $imap_ssl != 'tls') + else if ($imap_ssl && $imap_ssl != 'tls' && (!$config['default_port'] || $config['default_port'] == 143)) $imap_port = 993; } -- cgit v1.2.3