Roundcube als Webmail-Client (Debian)
Installation Webserver
Entweder eine vollständige Installation durchführen, vgl. mit Webserver installieren (Debian), oder die nachfolgende kleine Installation durchführen:
apt-get install apache2 mariadb-server php5-mysql
Anschließend Verschlüsselung aktivieren. Dies kann entweder mit den nachfolgenden Zeilen passieren:
mkdir /etc/apache2/ssl make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem a2ensite default-ssl a2enmod ssl
Alternativ kann Let's encrypt genutzt werden: Anleitung für Let's encrypt.
Installation Roundcube
apt-get install roundcube-core roundcube-mysql
Während der Installation die Konfiguration durch dbconfig-common durchführen lassen, und Standardwerte übernehmen.
Bei der Datenbankauswahl "MySQL" auswählen.
Konfiguration Roundcube
Datei /etc/roundcube/roundcube.conf bearbeiten:
Kommentarzeichen in Zeile 3 entfernen.
Anschließend Apache-Server neu starten:
/etc/init.d/apache2 restart
Optionale Konfiguration Roundcube
Servername hinterlegen:
Datei /etc/roundcube/config.inc.php bearbeiten und lokalen Server hart hinterlegen. Dazu Zeile anpassen:
$config['default_host'] = 'localhost';
Installation Plugins
Identity SMTP Plugin
cd /path/to/roundcube/plugins git clone git://github.com/elm/Roundcube-SMTP-per-Identity-Plugin.git identity_smtp
Konfigurationsdatei /etc/roundcube/config.inc.php anpassen. Zeile hinzufügen:
$config['plugins'] = array( ... 'identity_smtp', );