diff options
author | thomascube <thomas@roundcube.net> | 2006-06-25 09:18:00 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-06-25 09:18:00 +0000 |
commit | 9606ffb32277ce4083144afc1a7f6194370cf69c (patch) | |
tree | 8e026b5ae25d587c0c31dd5b7a2f31f4966b5a82 /config/main.inc.php.dist | |
parent | cbdd6dcaea09c875be26333a273ba598b6ba9bc2 (diff) |
Changed behavior to include host-specific configuration (Bug #1483849)
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 9c72bbe86..dda852c48 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -173,6 +173,9 @@ $rcmail_config['mail_header_delimiter'] = NULL; * 'fuzzy_search' => 0); */ +// try to load host-specific configuration +$rcmail_config['include_host_config'] = FALSE; + /***** these settings can be overwritten by user's preferences *****/ @@ -200,10 +203,6 @@ $rcmail_config['message_sort_order'] = 'DESC'; // list of configuration option names that need to be available in Javascript. $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); -/***** try to load host-specific configuration *****/ - -@include($_SERVER['HTTP_HOST'].'.inc.php'); - // end of config file ?> |