From e935cdbf788bb941525dad4a28003a2c8c1fe458 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 17 Apr 2012 16:45:53 +0200 Subject: [PATCH] Default HTTPS post is 443 (unless stated otherwise), not 143 --- plugins/calendar/calendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/calendar/calendar.php b/plugins/calendar/calendar.php index 7eb9dee4..312a51ed 100644 --- a/plugins/calendar/calendar.php +++ b/plugins/calendar/calendar.php @@ -2403,7 +2403,7 @@ class calendar extends rcube_plugin $default_port = 80; if (rcube_https_check()) { $schema = 'https'; - $default_port = 143; + $default_port = 443; } $url = $schema . '://' . $_SERVER['HTTP_HOST']; if ($_SERVER['SERVER_PORT'] != $default_port)