diff --git a/conf/config.inc.php b/conf/config.inc.php index 791ceab..30fa9f7 100644 --- a/conf/config.inc.php +++ b/conf/config.inc.php @@ -187,3 +187,7 @@ $config['ldapAliasSync'] = array( // skin name: folder from skins/ $config['skin'] = 'elastic'; + +// -- config +// Allow custom config +$config['include_host_config'] = true; diff --git a/doc/ADMIN.md b/doc/ADMIN.md index 935843a..31fed4d 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -1,6 +1,6 @@ ## Configuration -You can extend - or even override - the Roundcube configuration which is coming with this package in the file `conf/local.inc.php`. Do not edit the file `conf/config.inc.php` as future upgrades will overwrite it. +You can extend - or even override - the Roundcube configuration which is coming with this package in the file `config/.inc.php`. Do not edit the file `config/config.inc.php` as future upgrades will overwrite it. #### Multi-users support @@ -31,11 +31,12 @@ Let's say for example that we want to install the [html5_notifier](https://packa $ COMPOSER_HOME=./.composer php composer.phar require "kitist/html5_notifier" ``` -4. Enable it in the local configuration file `conf/local.inc.php` using your favorite text editor by adding: +4. Enable it in the local configuration file `config/.inc.php` using your favorite text editor by adding: ``` prop['plugins'], 'html5_notifier'); ``` + See https://github.com/roundcube/roundcubemail/issues/9458#issuecomment-2121753923. Note that you should also check the plugin homepage for additional installation steps as needed.