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:
parent
ad0ba39c26
commit
e081a7cbaf
1 changed files with 57 additions and 48 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue