-
Notifications
You must be signed in to change notification settings - Fork 97
Howto: Add Plugins To Roundcube Webmail
Jeffrey Boehm edited this page Sep 5, 2019
·
1 revision
- Uncomment the build args section of the web service definition in
docker-compose.yml
:web: image: jeboehm/mailserver-web:latest build: context: ./web args: RCPLUGINS: kitist/html5_notifier johndoh/contextmenu
- Change the
RCPLUGINS
declaration and add the wanted packages. You can find them on roundcube.net. - If your plugin requires additional configuration, change the configuration
file in
web/rootfs/var/www/webmail/config/config.inc.php
. - Rebuild the image by running
bin/production.sh build web
. - Recreate the container:
bin/production.sh up -d web
.