mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
- Support HTTP_X_FORWARDED_PROTO header for HTTPS detecting (#1486866)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
CHANGELOG RoundCube Webmail
|
||||
===========================
|
||||
|
||||
- Support HTTP_X_FORWARDED_PROTO header for HTTPS detecting (#1486866)
|
||||
- Fix default IMAP port configuration (#1486864)
|
||||
- Create Sent folder when starting to compose a new message (#1486802)
|
||||
- Fix handling of messages with Content-Type: application/* and no filename (#1484050)
|
||||
|
||||
@@ -1525,9 +1525,11 @@ function rcube_html_editor($mode='')
|
||||
function rcube_https_check($port=null, $use_https=true)
|
||||
{
|
||||
global $RCMAIL;
|
||||
|
||||
|
||||
if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off')
|
||||
return true;
|
||||
if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) == 'https')
|
||||
return true;
|
||||
if ($port && $_SERVER['SERVER_PORT'] == $port)
|
||||
return true;
|
||||
if ($use_https && isset($RCMAIL) && $RCMAIL->config->get('use_https'))
|
||||
|
||||
Reference in New Issue
Block a user