2019-03-03 18:12:41 +01:00
# Roundcube for YunoHost
[![Integration level ](https://dash.yunohost.org/integration/roundcube.svg )](https://dash.yunohost.org/appci/app/roundcube)
[![Install Roundcube with YunoHost ](https://install-app.yunohost.org/install-with-yunohost.png )](https://install-app.yunohost.org/?app=roundcube)
> *This package allow you to install Roundcube quickly and simply on a YunoHost server.
If you don't have YunoHost, please see [here ](https://yunohost.org/#/install ) to know how to install and enjoy it.*
## Overview
2016-05-01 14:18:57 +02:00
[Roundcube ](https://roundcube.net/ ) is a browser-based multilingual IMAP client with
an application-like user interface.
2019-04-06 14:21:59 +02:00
**Shipped version:** 1.3.9
2016-03-30 18:24:34 +02:00
2019-03-03 18:12:41 +01:00
## Screenshots
![](https://roundcube.net/images/screens/mailbox.png)
## Demo
* [YunoHost demo ](https://demo.yunohost.org/webmail/ )
## 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.
2016-10-02 11:56:03 +02:00
2019-03-03 18:12:41 +01:00
## Documentation
* Official documentation: https://github.com/roundcube/roundcubemail/wiki
2019-03-09 12:37:44 +01:00
* YunoHost documentation: https://github.com/YunoHost/doc/blob/master/app_roundcube.md:
2019-03-03 18:12:41 +01:00
## YunoHost specific features
2016-03-30 18:24:34 +02:00
2016-05-19 21:20:17 +02:00
In addition to Roundcube core features, the following are made available with
2019-05-17 17:11:33 +02:00
this package:
* Synchronize your email aliases as identities in Roundcube
* Install the [contextmenu ](https://plugins.roundcube.net/packages/johndoh/contextmenu )
and [automatic addressbook ](https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook )
plugins by default
* Allow to install the [CardDAV ](https://plugins.roundcube.net/packages/roundcube/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.
2016-05-15 23:51:33 +02:00
2019-03-03 18:12:41 +01:00
#### Multi-users support
2019-05-17 17:11:33 +02:00
* Integrate with YunoHost users and SSO - i.e. logout button, YunoHost users
search
2019-03-03 18:12:41 +01:00
#### Supported architectures
2019-05-26 12:02:42 +02:00
* x86-64b - [![Build Status ](https://ci-apps.yunohost.org/ci/logs/roundcube%20%28Apps%29.svg )](https://ci-apps.yunohost.org/ci/apps/roundcube/)
* ARMv8-A - [![Build Status ](https://ci-apps-arm.yunohost.org/ci/logs/roundcube%20%28Apps%29.svg )](https://ci-apps-arm.yunohost.org/ci/apps/roundcube/)
* Jessie x86-64b - [![Build Status ](https://ci-stretch.nohost.me/ci/logs/roundcube%20%28Apps%29.svg )](https://ci-stretch.nohost.me/ci/apps/roundcube/)
2016-03-30 18:24:34 +02:00
2019-03-03 18:12:41 +01:00
## Limitations
2016-03-30 18:24:34 +02:00
2019-05-17 17:11:33 +02:00
* No known limitations.
2019-03-03 18:12:41 +01:00
## Additional information
2016-03-30 18:24:34 +02:00
2019-03-03 18:12:41 +01:00
#### Plugins
2016-03-30 18:24:34 +02:00
2016-08-26 14:39:10 +02:00
You can also install other plugins - which will not be removed with upgrades. To do so,
2016-03-30 18:24:34 +02:00
you can use the official [Plugin Repository ](https://plugins.roundcube.net/ ).
2019-03-03 18:12:41 +01:00
##### From the Plugin Repository
2016-03-30 18:24:34 +02:00
Let's say for example that we want to install the
[html5_notifier ](https://plugins.roundcube.net/packages/kitist/html5_notifier ) plugin.
1. Connect to your server as root using SSH:
```
$ ssh admin@1.2.3.4
$ sudo -i
```
2017-06-18 19:47:11 +02:00
2. Log in as the `roundcube` user - which owns the roundcube directory - and navigate
2016-08-26 14:39:10 +02:00
in it:
2016-03-30 18:24:34 +02:00
```
2017-06-18 19:47:11 +02:00
# su -s /bin/bash - roundcube
2016-03-30 18:24:34 +02:00
$ cd /var/www/roundcube
```
3. 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"
```
2016-08-26 14:39:10 +02:00
4. Enable it in the local configuration file `conf/local.inc.php` using your
2016-03-30 18:24:34 +02:00
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.
2019-03-03 18:12:41 +01:00
##### Manual installation
2016-03-30 18:24:34 +02:00
2016-08-26 14:39:10 +02:00
You can also download the plugin and put it under the `plugins/` directory. In this
2017-06-18 19:47:11 +02:00
case, do not forget to change ownerships of this folder to `roundcube` .
2016-03-28 22:14:19 +02:00
2016-05-15 23:51:33 +02:00
## Links
2016-03-28 22:14:19 +02:00
2019-03-03 18:12:41 +01:00
* Report a bug: https://github.com/YunoHost-Apps/roundcube_ynh/issues
2016-05-19 21:20:17 +02:00
* Roundcube website: https://roundcube.net/
2019-05-18 18:42:54 +02:00
* Roundcube repository: https://github.com/roundcube/roundcubemail
2016-05-19 21:20:17 +02:00
* YunoHost website: https://yunohost.org/
2019-03-03 18:12:41 +01:00
---
Developers info
----------------
**Only if you want to use a testing branch for coding, instead of merging directly into master.**
Please do your pull request to the [testing branch ](https://github.com/YunoHost-Apps/roundcube_ynh/tree/testing ).
To try the testing branch, please proceed like that.
```
sudo yunohost app install https://github.com/YunoHost-Apps/roundcube_ynh/tree/testing --debug
or
sudo yunohost app upgrade roundcube -u https://github.com/YunoHost-Apps/roundcube_ynh/tree/testing --debug
```