Roundcube is a browser-based multilingual IMAP client with an application-like user interface.
Shipped version: 1.2.0
In addition to Roundcube core features, the following are made available with this package:
- Integrate with YunoHost users and SSO - i.e. logout button, YunoHost users search
- Synchronize your email aliases as identities in Roundcube
- Install the contextmenu and automatic addressbook plugins by default
- Allow to install the CardDAV (address book) synchronization plugin at the installation - note that if you have installed ownCloud or Baïkal, it will automatically add the corresponding and existing address book.
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 it will be overriden with upgrades.
You can also install other plugins - which will not removed with upgrades. To do so, you can use the official Plugin Repository.
Let's say for example that we want to install the html5_notifier plugin.
-
Connect to your server as root using SSH:
$ ssh [email protected] $ sudo -i
-
Log as the
www-data
user - which owns the roundcube directory - and navigate under it:# su -s /bin/bash - www-data $ cd /var/www/roundcube
-
Install the plugin you want using composer - note that you have to specify kitist/html5_notifier and not only html5_notifier:
$ COMPOSER_HOME=./.composer php composer.phar require "kitist/html5_notifier"
-
Enable it in the local configuration file
conf/local.inc.php
using you're favorite text editor by adding:<?php $config['plugins'][] = 'html5_notifier';
Note that you should also check the plugin homepage for additional installation steps as needed.
You can also download the plugin and put it under the plugins/
directory. In that
case, do not forget to change ownerships to this folder to www-data
.
- Report a bug: https://dev.yunohost.org/projects/apps/issues
- Roundcube website: https://roundcube.net/
- YunoHost website: https://yunohost.org/