Webmail: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 13: | Zeile 13: | ||
sudo mv roundcubemail-1.1.4 /var/www/roundcube | sudo mv roundcubemail-1.1.4 /var/www/roundcube | ||
sudo chown -R www-data:www-data /var/www/roundcube | sudo chown -R www-data:www-data /var/www/roundcube | ||
</pre> | |||
==== Datenbank erstellen ==== | |||
<pre> | |||
mysql -u root -p | |||
mysql> CREATE DATABASE roundcubemail; | |||
mysql> create user 'roundcube'@'%' identified by '<password>'; | |||
mysql> grant usage on *.* to 'roundcube'@'%' identified by '<password>'; | |||
mysql> grant all privileges on roundcubemail.* to 'roundcube'@'%'; | |||
mysql> flush privileges; | |||
mysql> quit; | |||
</pre> | </pre> | ||
Version vom 20. März 2016, 16:28 Uhr
Roundcube
Download
weget https://downloads.sourceforge.net/project/roundcubemail/roundcubemail/1.1.4/roundcubemail-1.1.4.tar.gz
Installation
sudo tar xzvf roundcubemail-* sudo mv roundcubemail-1.1.4 /var/www/roundcube sudo chown -R www-data:www-data /var/www/roundcube
Datenbank erstellen
mysql -u root -p mysql> CREATE DATABASE roundcubemail; mysql> create user 'roundcube'@'%' identified by '<password>'; mysql> grant usage on *.* to 'roundcube'@'%' identified by '<password>'; mysql> grant all privileges on roundcubemail.* to 'roundcube'@'%'; mysql> flush privileges; mysql> quit;
Konfiguration
Links
https://roundcube.net/download/
http://www.pcwelt.de/ratgeber/Roundcube-Der-eigene-Webmailer-9803660.html