Pobieramy z roundcube.net/download/
Tworzymy MySQL bazę + usera
CREATE DATABASE roundcubemail;
GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube IDENTIFIED BY 'password';
GO
FLUSH PRIVILEGES;
Pluginy mamy tutaj plugins.roundcube.net/, które instalujemy przy pomocy composer .
Instalacja wersja 1.3.8 – w katalogu serwera www wykonujemy
rm public_html
wget -c https://github.com/roundcube/roundcubemail/releases/download/1.3.8/roundcubemail-1.3.8-complete.tar.gz
tar zxvf roundcubemail-1.3.8-complete.tar.gz
mv roundcubemail-1.3.8 public_html
Wchodzimy na stronę https://url-to-roundcube/installer/ i dokonujemy konfiguracji
.htaccess – sprawdz limity dla poczty oraz przekieruj strone na SSLa
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
Edytujemy vi config/defaults.inc.php i zmieniamy
$config[’reply_mode’] = 1;
$config[’logout_purge’] = true;
Instalujemy plugin roundcube-thunderbird_labels-master
cd plugins/
wget -c https://github.com/mike-kfed/roundcube-thunderbird_labels/archive/master.zip
unzip master.zip
rm master.zip
UWAGA: Pamiętaj usunąć lub lepiej zmienić nazwę dla katalogu installer (https://url-to-roundcube/installer/)
SIEVE – rfc ; vi .sieve
require ["fileinto", "regex", "date", "relational", "vacation"];
# Send a copy of email to
redirect "mail1@domain1.com";
redirect "mail2@domain2.com";
redirect "mail3@domain3.com";
redirect "mail4@domain4.com";
redirect "mail5@domain5.com";
redirect "mail6@domain6.com";
redirect "mail7@domain7.com";
keep;
# discard;
Kalendarz dla RoundCube
sabre/vobject
Wersja płatna
calendar