diff --git a/docs/faq.rst b/docs/faq.rst index 05dc08f1..626f92ad 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -267,6 +267,7 @@ correct syntax. The following file names will be taken as override configuration - `Dovecot`_ - ``dovecot.conf`` in dovecot sub-directory; - `Nginx`_ - All ``*.conf`` files in the ``nginx`` sub-directory; - `Rspamd`_ - All files in the ``rspamd`` sub-directory. +- Roundcube - All ``*.inc`` files in the ``roundcube`` sub directory. To override the root location (``/``) in Nginx ``WEBROOT_REDIRECT`` needs to be set to ``none`` in the env file (see :ref:`web settings `). diff --git a/towncrier/newsfragments/2195.bugfix b/towncrier/newsfragments/2195.bugfix new file mode 100644 index 00000000..5f0616a2 --- /dev/null +++ b/towncrier/newsfragments/2195.bugfix @@ -0,0 +1 @@ +Added the /overrides directory in the roundcube config.inc.php file diff --git a/webmails/roundcube/config.inc.php b/webmails/roundcube/config.inc.php index b02c527e..a7b742f5 100644 --- a/webmails/roundcube/config.inc.php +++ b/webmails/roundcube/config.inc.php @@ -61,6 +61,6 @@ $config['mdn_use_from'] = true; // includes {%- for inc in INCLUDES %} -include('{{ inc }}'); +include('/overrides/{{ inc }}'); {%- endfor %}