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

106 lines
4.5 KiB
Markdown
Raw Normal View History

2021-05-28 22:06:54 +02:00
<!--
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
It shall NOT be edited by hand.
-->
2019-03-03 18:12:41 +01:00
# Roundcube for YunoHost
2020-03-29 13:51:22 +02:00
[![Integration level](https://dash.yunohost.org/integration/roundcube.svg)](https://dash.yunohost.org/appci/app/roundcube) ![](https://ci-apps.yunohost.org/ci/badges/roundcube.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/roundcube.maintain.svg)
2020-12-26 22:56:37 +01:00
[![Install Roundcube with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=roundcube)
2019-03-03 18:12:41 +01:00
2020-11-09 13:36:48 +01:00
*[Lire ce readme en français.](./README_fr.md)*
2021-05-28 22:06:54 +02:00
> *This package allows you to install Roundcube quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
2019-03-03 18:12:41 +01:00
## Overview
2016-03-30 18:24:34 +02:00
2021-08-29 15:16:02 +02:00
Roundcube is a browser-based multilingual IMAP client with an application-like user interface. It provides full functionality you expect from an email client, including MIME support, address book, folder manipulation, message searching and spell checking.
### Features
- CardDAV to connect with baïkal or Nextcloud
- Support for PGP encryption with Enigma plugin
2019-03-03 18:12:41 +01:00
2021-05-28 22:06:54 +02:00
**Shipped version:** 1.5.0~ynh1
2019-03-03 18:12:41 +01:00
2021-05-28 22:06:54 +02:00
**Demo:** https://demo.yunohost.org/webmail/
2019-03-03 18:12:41 +01:00
2021-05-28 22:06:54 +02:00
## Disclaimers / important information
2019-03-03 18:12:41 +01: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 `conf/config.inc.php` as future upgrades will overwrite it.
2019-03-03 18:12:41 +01:00
## YunoHost specific features
2016-03-30 18:24:34 +02:00
2020-11-09 13:36:48 +01:00
In addition to Roundcube core features, the following are made available with this package:
* Synchronize your email aliases as identities in Roundcube
2020-11-09 12:05:21 +01:00
* Install the [contextmenu](https://plugins.roundcube.net/packages/johndoh/contextmenu) and [automatic addressbook](https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook) plugins by default
2020-11-09 13:36:48 +01:00
* 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 Nextcloud or Baïkal, it will automatically add the corresponding and existing address book.
2021-08-29 15:16:02 +02:00
* Support for PGP encryption with Enigma plugin by default.
2019-03-03 18:12:41 +01:00
#### Multi-users support
2020-11-09 12:05:21 +01:00
* Integrate with YunoHost users and SSO - i.e logout button, YunoHost users search
2019-03-03 18:12:41 +01:00
#### Plugins
2016-03-30 18:24:34 +02:00
2020-11-09 13:36:48 +01:00
You can also install other plugins - which will not be removed with upgrades. To do so, you can use the official [Plugin Repository](https://plugins.roundcube.net/).
2016-03-30 18:24:34 +02:00
2019-03-03 18:12:41 +01:00
##### From the Plugin Repository
2016-03-30 18:24:34 +02:00
2020-11-09 13:36:48 +01:00
Let's say for example that we want to install the [html5_notifier](https://plugins.roundcube.net/packages/kitist/html5_notifier) plugin.
2016-03-30 18:24:34 +02:00
1. Connect to your server as root using SSH:
```
$ ssh admin@1.2.3.4
$ sudo -i
```
2020-11-09 13:36:48 +01:00
2. Log in as the `roundcube` user - which owns the roundcube directory - and navigate 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
```
2020-11-09 13:36:48 +01:00
3. Install the plugin you want using composer - note that you have to specify *kitist/html5_notifier* and not only *html5_notifier*:
2016-03-30 18:24:34 +02:00
```
$ COMPOSER_HOME=./.composer php composer.phar require "kitist/html5_notifier"
```
2020-11-09 13:36:48 +01:00
4. Enable it in the local configuration file `conf/local.inc.php` using your favorite text editor by adding:
2016-03-30 18:24:34 +02:00
```
<?php
$config['plugins'][] = 'html5_notifier';
```
2020-11-09 13:36:48 +01:00
Note that you should also check the plugin homepage for additional installation steps as needed.
2016-03-30 18:24:34 +02:00
2019-03-03 18:12:41 +01:00
##### Manual installation
2016-03-30 18:24:34 +02:00
2020-11-09 13:36:48 +01:00
You can also download the plugin and put it under the `plugins/` directory. In this case, do not forget to change ownerships of this folder to `roundcube`.
2021-05-28 22:06:54 +02:00
## Documentation and resources
2021-08-18 20:11:35 +02:00
* Official app website: https://roundcube.net/
2021-05-28 22:06:54 +02:00
* Official user documentation: https://yunohost.org/en/app_roundcube
* Official admin documentation: https://github.com/roundcube/roundcubemail/wiki
2021-06-04 16:09:45 +02:00
* Upstream app code repository: https://github.com/roundcube/roundcubemail
2021-05-28 22:06:54 +02:00
* YunoHost documentation for this app: https://yunohost.org/app_roundcube
* Report a bug: https://github.com/YunoHost-Apps/roundcube_ynh/issues
2019-03-03 18:12:41 +01:00
2021-05-28 22:06:54 +02:00
## Developer info
2019-03-03 18:12:41 +01:00
2021-05-28 22:06:54 +02:00
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/roundcube_ynh/tree/testing).
2019-03-03 18:12:41 +01:00
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
```
2021-05-28 22:06:54 +02:00
**More info regarding app packaging:** https://yunohost.org/packaging_apps