Plugins Roundcube

Aus Tutorials
Zur Navigation springen Zur Suche springen

Voraussetzungen

Plugin-Installer installieren

wget https://github.com/roundcube/plugin-installer/archive/master.zip
unzip master.zip
sudo mv plugin-installer-master/ /var/www/roundcube/plugin-installer/
sudo chown -R www-data:www-data /var/www/roundcube/plugin-installer/

Carddav

sudo apt-get install git curl php5-cli php5-curl

Installation

git clone https://github.com/blind-coder/rcmcarddav
sudo mv rcmcarddav/ /var/www/roundcube/plugins/carddav/
cd /var/www/roundcube/plugins/carddav/
sudo su 
curl -sS https://getcomposer.org/installer | php 
exit
sudo php composer.phar install
sudo chown -R www-data:www-data /var/www/roundcube/plugins/carddav/
sudo -u www-data cp config.inc.php.dist config.inc.php

Links

http://www.benjamin-schieder.de/carddav.html

Calendar

Installation

cd /var/www/roundcube/plugins/
sudo git clone  https://gitlab.com/kolab-roundcube-plugins/libcalendaring.git
sudo chown -R www-data:www-data libcalendaring
git clone https://gitlab.com/kolab-roundcube-plugins/calendar.git
sudo chown -R www-data:www-data calendar
cd calendar

Kolab

Installation

cd /var/www/roundcube/plugins/
sudo git clone https://gitlab.awesome-it.de/kolab/roundcube-plugins.git plugins-caldav

Links

https://github.com/babelmcs/kolab-roundcube-plugins

Problemlösungen

PEAR repository from http://pear.php.net could not be loaded.

Um dieses Problem zu lösen, muss in der Datei composer.json folgendes hinzugefügt werden:

    ...,
    "config":{
        "secure-http" : false
    }

The lock file is not up to date with the latest changes in composer.json.

sudo php composer.phar update --lock

Links

https://plugins.roundcube.net/


Zurück zu Mailserver einrichten