From 904809459d8cd0e92f63fb2f50ab5f6bd1b9493e Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Wed, 21 Jul 2010 03:55:20 -0400 Subject: [PATCH] Fix default IMAP port configuration (#1486864) --- program/include/rcmail.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/rcmail.php b/program/include/rcmail.php index d644f4f..3fa2fa2 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -585,7 +585,7 @@ $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; } -- Gitblit v1.9.1