On 23.11.2010 14:30, Arminas wrote:
// try to load host-specific configuration // see http://trac.roundcube.net/wiki/Howto_Config for more details $rcmail_config['include_host_config'] = array( 'mydomain1.com' => 'domain1.inc.php', 'mydomain2.com' => 'domain2.inc.php', );
But you know this setting is for http servers (virtual hosts) names? The filename must match with PHP's $_SERVER['HTTP_HOST'] value.
Simply these few lines above does nothing. I can write both in domain1.inc.php and domain2.inc.php such content as : <?php die(); ?> , but roundcube doesn't die - so these files aren't included and aren't merged with main array.
And the files are in config/ directory and are readable?