1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
Roundcube package for YunoHost
Find a file
2017-01-17 10:50:35 +01:00
conf [enh] Enable separate Vacation section from Sieve filters 2016-06-09 22:16:04 +02:00
patches [fix] Manage the upgrade from current official ynh package 2016-05-19 19:51:27 +02:00
scripts [enh] Update Roundcube to v1.2.2 2016-10-02 11:52:41 +02:00
sources [enh] Upgrade Roundcube to v1.2.0 2016-05-22 22:31:32 +02:00
.gitignore [enh] Initial commit for new app based on Kloadut/roundcube_ynh 2016-05-19 19:49:47 +02:00
check_process Create check_process 2017-01-17 10:50:35 +01:00
LICENSE [fix] Add LICENSE and specify upstream license in manifest.json 2016-05-19 19:51:28 +02:00
manifest.json [enh] Update Roundcube to v1.2.2 2016-10-02 11:52:41 +02:00
README.md Retour issues sur github 2016-12-17 13:59:52 +01:00

Roundcube for YunoHost

Roundcube is a browser-based multilingual IMAP client with an application-like user interface.

Shipped version: 1.2.2

Features

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.

Extend and tweak

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.

Plugins

You can also install other plugins - which will not be removed with upgrades. To do so, you can use the official Plugin Repository.

From the Plugin Repository

Let's say for example that we want to install the html5_notifier plugin.

  1. Connect to your server as root using SSH:

    $ ssh admin@1.2.3.4
    $ sudo -i
    
  2. Log in as the www-data user - which owns the roundcube directory - and navigate in it:

    # su -s /bin/bash - www-data
    $ 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"
    
  4. Enable it in the local configuration file conf/local.inc.php using your 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.

Manual installation

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 www-data.