26 lines
573 B
Plaintext
26 lines
573 B
Plaintext
|
#### roundcubemail
|
||
|
|
||
|
##### Information
|
||
|
Site : https://roundcube.net/
|
||
|
|
||
|
Source : https://github.com/roundcube/roundcubemail
|
||
|
|
||
|
##### Install
|
||
|
|
||
|
```bash
|
||
|
apt install -y wget ca-certificates
|
||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||
|
apt-get update
|
||
|
apt install roundcubemail
|
||
|
|
||
|
# sample configuration for apache2 + vhost
|
||
|
|
||
|
cp /usr/share/doc/roundcubemail/apache2-roundcubemail.conf /etc/apache2/sites-available/roundcubemail.conf
|
||
|
a2ensite roundcubemail
|
||
|
|
||
|
# edit /etc/apache2/sites-available/roundcubemail.conf
|
||
|
# edit /etc/roundcubemail/config.inc.php
|
||
|
|
||
|
systemctl restart apache2
|
||
|
```
|