summaryrefslogtreecommitdiff
path: root/roundcubemail/config
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-01-12 08:13:40 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-01-12 08:13:40 +0000
commit65187199cf5defda23522a51fa99fb305fe0d813 (patch)
tree0c222e227b17333e76ba2acf0184b01387b7cf47 /roundcubemail/config
parente4334cab9371c8440d934e1a00dbbdb9c5ad7f9d (diff)
- Add description of 'use_https' option in main.inc.php.dist file
git-svn-id: https://svn.roundcube.net/trunk@4403 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
-rw-r--r--roundcubemail/config/main.inc.php.dist5
1 files changed, 5 insertions, 0 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist
index e2f9aea3b..144ca77b6 100644
--- a/roundcubemail/config/main.inc.php.dist
+++ b/roundcubemail/config/main.inc.php.dist
@@ -181,6 +181,11 @@ $rcmail_config['message_cache_lifetime'] = '10d';
// set the port for the ssl connection as value of this option if it differs from the default 443
$rcmail_config['force_https'] = false;
+// tell PHP that it should work as under secure connection
+// even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
+// e.g. when you're running Roundcube behind a https proxy
+$rcmail_config['use_https'] = false;
+
// Allow browser-autocompletion on login form.
// 0 - disabled, 1 - username and host only, 2 - username, host, password
$rcmail_config['login_autocomplete'] = 0;