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
CodeShakingSheep 80ed7e261e
Update ADMIN.md
Update configuration section
2024-05-27 09:49:24 -05:00
.github v2 2024-01-27 00:11:22 +01:00
conf Update config.inc.php 2024-05-26 23:19:57 -05:00
doc Update ADMIN.md 2024-05-27 09:49:24 -05:00
scripts Fix : call update.sh with the proper php version (yes update.sh is a php script...) 2024-01-27 01:13:13 +01:00
sources/patches Testing (#117) 2021-08-22 09:26:26 +02:00
.gitignore [enh] Initial commit for new app based on Kloadut/roundcube_ynh 2016-05-19 19:49:47 +02:00
ALL_README.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
config_panel.toml Testing (#159) 2022-09-30 18:31:12 +02:00
LICENSE [fix] Add LICENSE and specify upstream license in manifest.json 2016-05-19 19:51:28 +02:00
manifest.toml Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
README.md Update README.md 2024-05-26 23:27:14 -05:00
README_es.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
README_eu.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
README_fr.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
README_gl.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
README_it.md Auto-update README 2024-03-29 07:21:21 +01:00
README_zh_Hans.md Upgrade to v1.6.7 (#198) (#199) 2024-05-20 15:19:27 +02:00
tests.toml Add schemas, coding style toml 2024-01-27 00:12:17 +01:00

Roundcube for YunoHost

Integration level Working status Maintenance status

Install Roundcube with YunoHost

Read this README in other languages.

This package allows you to install Roundcube quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult the guide to learn how to install it.

Overview

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.

YunoHost specific features

In addition to Roundcube core features, the following are made available with this package:

  • 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 Nextcloud or Baïkal, it will automatically add the corresponding and existing address book.
  • Support for PGP encryption with Enigma plugin by default.

Shipped version: 1.6.7~ynh1

Demo: https://demo.yunohost.org/webmail/

Screenshots

Screenshot of Roundcube

Configuration

You can extend - or even override - the Roundcube configuration which is coming with this package in the file config/<ROUNDCUBE_DOMAIN>.inc.php. Do not edit the file config/config.inc.php as future upgrades will overwrite it.

Multi-users support

  • Integrate with YunoHost users and SSO - i.e logout button, YunoHost users search

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 roundcube user - which owns the roundcube directory - and navigate in it:

    # su -s /bin/bash - roundcube
    $ 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 config/<DOMAIN>.inc.php using your favorite text editor by adding:

    <?php
    array_push($this->prop['plugins'], 'html5_notifier');
    

    See https://github.com/roundcube/roundcubemail/issues/9458.

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 roundcube.

Documentation and resources

Developer info

Please send your pull request to the testing branch.

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

More info regarding app packaging: https://yunohost.org/packaging_apps