From 65c0a0e591d917e87d54f499f9b25da522746aed Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 13 Oct 2009 08:40:21 +0000 Subject: - Option 'force_https' replaced by 'force_https' plugin - added option 'force_https_port' in 'force_https' plugin (#1486091) --- plugins/force_https/force_https.php | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 plugins/force_https/force_https.php (limited to 'plugins/force_https') diff --git a/plugins/force_https/force_https.php b/plugins/force_https/force_https.php new file mode 100644 index 000000000..67552570e --- /dev/null +++ b/plugins/force_https/force_https.php @@ -0,0 +1,38 @@ + + */ +class force_https extends rcube_plugin +{ + function init() + { + $this->add_hook('startup', array($this, 'redirect')); + } + + function redirect($args) + { + $config = rcmail::get_instance()->config; + + $port = (int) $config->get('force_https_port', 443); + + // check if https is required (for login) and redirect if necessary + if (empty($_SESSION['user_id']) && !$config->get('use_https') + && (!isset($_SERVER['HTTPS']) || $_SERVER['SERVER_PORT'] != $port)) + { + header('Location: https://' . $_SERVER['HTTP_HOST'] . ($port != 443 ? ":$port" : '') . $_SERVER['REQUEST_URI']); + exit; + } + + return $args; + } +} + +?> -- cgit v1.2.3