1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00

[enh] Allow the user to define a local configuration

This commit is contained in:
Jérôme Lebleu 2016-03-30 14:57:11 +02:00
parent ad0ba39c26
commit e081a7cbaf

View file

@ -156,3 +156,12 @@ $config['ldapAliasSync'] = array(
'attr_name' => 'cn', 'attr_name' => 'cn',
), ),
); );
// ----------------------------------
// LOCAL CONFIGURATION
// ----------------------------------
$local_config = dirname(__FILE__) . '/local.inc.php';
if (file_exists($local_config)) {
include $local_config;
}