1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
roundcube_ynh/README.md

83 lines
2.6 KiB
Markdown
Raw Normal View History

Roundcube for YunoHost
----------------------
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.
2017-06-18 19:47:11 +02:00
**Shipped version:** 1.2.5
2016-03-30 18:24:34 +02:00
![](https://roundcube.net/images/screens/mailview.jpg)
## Features
2016-03-30 18:24:34 +02:00
In addition to Roundcube core features, the following are made available with
this package:
2016-03-30 18:24:34 +02:00
* Integrate with YunoHost users and SSO - i.e. logout button, YunoHost users
search
* 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.
## Extend and tweak
2016-03-30 18:24:34 +02:00
### 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
2016-08-26 14:39:10 +02:00
`conf/config.inc.php` as future upgrades will overwrite it.
2016-03-30 18:24:34 +02:00
### Plugins
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/).
#### From the Plugin Repository
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.
2016-05-01 14:18:57 +02: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`.
## Links
* Roundcube website: https://roundcube.net/
* YunoHost website: https://yunohost.org/