Roundcube als Webmail-Client (Debian): Unterschied zwischen den Versionen

Aus MattWiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 28: Zeile 28:
Datei '''/etc/roundcube/config.inc.php''' bearbeiten und lokalen Server hart hinterlegen. Dazu Zeile anpassen:
Datei '''/etc/roundcube/config.inc.php''' bearbeiten und lokalen Server hart hinterlegen. Dazu Zeile anpassen:
  $config['default_host'] = 'localhost';
  $config['default_host'] = 'localhost';
== Installation Plugins ==
[[Kategorie:Debian]]
[[Kategorie:Debian]]
[[Kategorie:E-Mail]]
[[Kategorie:E-Mail]]
=== Identity SMTP Plugin ===
cd /path/to/roundcube/plugins
git clone <nowiki>git://github.com/elm/Roundcube-SMTP-per-Identity-Plugin.git</nowiki> identity_smtp
Konfigurationsdatei '''config/main.inc.php''' anpassen. Zeile hinzufügen:
identity_smtp to $rcmail_config['plugins']

Version vom 29. Januar 2017, 16:53 Uhr

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 config/main.inc.php anpassen. Zeile hinzufügen:

identity_smtp to $rcmail_config['plugins']