Skip to content

Instantly share code, notes, and snippets.

@ai2ik
Created December 28, 2018 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ai2ik/c7041157d1456a92eb8f76e359c59f44 to your computer and use it in GitHub Desktop.
Save ai2ik/c7041157d1456a92eb8f76e359c59f44 to your computer and use it in GitHub Desktop.
in VestaCP
apt install roundcube-core roundcube-mysql roundcube-plugins
wget http://c.vestacp.com/0.9.8/debian/apache2-webmail.conf -O /etc/roundcube/apache.conf
nano /etc/roundcube/debian-db.php (enter password)
cd /usr/share
mv roundcube roundcube-bk
rm -r roundcube
wget https://github.com/roundcube/roundcubemail/releases/download/1.3.7/roundcubemail-1.3.7-complete.tar.gz
tar -xvf roundcubemail-1.3.7-complete.tar.gz
mv roundcubemail-1.3.7-complete roundcube
rm -r /usr/share/roundcube/installer
service apache2 restart
service nginx restart
To fix Rouncube SMTP 550 error:
nano /etc/roundcube/config.inc.php
update values:
$config['smtp_server'] = '%h';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment