From 5818e44345204e2323781adb87edcfba45e246a8 Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 27 Oct 2009 09:43:39 +0000 Subject: - Fix $_SERVER['HTTPS'] check for SSL forcing on IIS (#1486243) + fix port check --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index e0956b4ff..e9b3676e9 100644 --- a/index.php +++ b/index.php @@ -66,7 +66,7 @@ if ($RCMAIL->action=='error' && !empty($_GET['_code'])) { // check if https is required (for login) and redirect if necessary if (empty($_SESSION['user_id']) && ($force_https = $RCMAIL->config->get('force_https', false))) { $https_port = is_bool($force_https) ? 443 : $force_https; - if (!(isset($_SERVER['HTTPS']) || $_SERVER['SERVER_PORT'] == $use_https || $RCMAIL->config->get('use_https'))) { + if (!rcube_https_check($https_port)) { header('Location: https://' . $_SERVER['HTTP_HOST'] . ($https_port != 443 ? ':' . $https_port : '') . $_SERVER['REQUEST_URI']); exit; } -- cgit v1.2.3