Studiing the code in https://github.com/roundcube/roundcubemail/blob/master/program/lib/Roundcube/rcube_plugin.php#L167 reveals that it is possible to provide the config for plugins through any path (therefore also `/var/www/html/config/.inc.php).
This is great, because it means we do not need to touch the code/content of plugins at all.
To easy deployment it would therefore be helpful, if the entry-script would also copy such config files from the /var/roundcube/ folder.
I'd suggest to add the possibility to provide those files in /var/roundcube/plugin-config/ and to simply copy those over to /var/www/html/config/
If this suggestion is welcome, I'd provide a PR.
Note: This is mostly important for php-fpm use cases.
Studiing the code in https://github.com/roundcube/roundcubemail/blob/master/program/lib/Roundcube/rcube_plugin.php#L167 reveals that it is possible to provide the config for plugins through any path (therefore also `/var/www/html/config/.inc.php).
This is great, because it means we do not need to touch the code/content of plugins at all.
To easy deployment it would therefore be helpful, if the entry-script would also copy such config files from the
/var/roundcube/folder.I'd suggest to add the possibility to provide those files in
/var/roundcube/plugin-config/and to simply copy those over to/var/www/html/config/If this suggestion is welcome, I'd provide a PR.
Note: This is mostly important for php-fpm use cases.