Page 1 of 2

Roundcube Update

Posted: Wed Jul 02, 2014 6:23 pm
by UniOn
Hello everybody,

How do I update my Roundcube to the latest version.

That's pretty much all I need to know, thanks for helping me!

I'm running Vestacp on a Debian 7.0 64 bit server.

Re: Roundcube Update

Posted: Sat Jul 05, 2014 11:29 pm
by mishra.amitkr
most probably what we are getting with vestacp is roundcube version 0.7

its high time vestacp should upgrade the roundcube.

or let us know how to do that...

Re: Roundcube Update

Posted: Sun Jul 06, 2014 8:26 pm
by imperio

Re: Roundcube Update

Posted: Thu Jul 10, 2014 9:37 pm
by UniOn
I'm wondering, why don't you guys update the roundcube included in the Vespacp installer?

Re: Roundcube Update

Posted: Sat Jul 12, 2014 5:36 am
by jarland
UniOn wrote:
I'm wondering, why don't you guys update the roundcube included in the Vespacp installer?
You are most likely using the Roundcube version that is given in the repositories for your distribution. I would take a guess that a manual installation of the latest version is probably in the cards for Vesta in the future, given that there are less variables to alter between distros when installing a fresh copy. Though, there is more work in securing it.

Re: Roundcube Update

Posted: Wed Jul 23, 2014 4:07 pm
by Youp
Hi,

If you are still looking for an answer, here are the steps I followed :

*** Save Original Files

Code: Select all

mv /usr/share/roundcube/ /usr/share/roundcube_bk/
cp -R /var/lib/roundcube/ /var/lib/roundcube_bk/
*** Download Roundcube and prepare the folder

Code: Select all

tar xvf rcm[NAME_MAY_DIFFERS].tar.gz
cp -R rcm[NAME_MAY_DIFFERS]/ /usr/share/roundcube/
*** Create config files (and symlinks)

Code: Select all

mkdir /etc/roundcube/config
cp /usr/share/roundcube/config/defaults.inc.php /etc/roundcube/config/defaults.inc.php
ln -s /etc/roundcube/config/defaults.inc.php /var/lib/roundcube/config/defaults.inc.php
cp /usr/share/roundcube/config/config.inc.php /etc/roundcube/config/config.inc.php
ln -s /etc/roundcube/config/config.inc.php /var/lib/roundcube/config/config.inc.php
*** Copy plugins and skins

Code: Select all

rm -R /var/lib/roundcube/plugins/
rm -R /var/lib/roundcube/skins/
cp -R /usr/share/roundcube/plugins/ /var/lib/roundcube/plugins/
cp -R /usr/share/roundcube/skins/ /var/lib/roundcube/skins/
That should work on http://www.yourdomain.com/webmail

Re: Roundcube Update

Posted: Mon Aug 04, 2014 9:19 pm
by mishra.amitkr
the roundcube in debian install is preety out-dated...

and how to change domain.com/webmail to webmail.domain.com

Re: Roundcube Update

Posted: Fri May 22, 2015 3:09 am
by plantalabs
hi, i am looking to update to!! testing in a virtual machine now. anyone has succesfuly installed kolab (round cube exteneded project) on vesta?

for change /webmail to webmail.domain.com you have to

1- create a sub domain webmail.domain.com
2- FTP and delete index.html and replace for index.php with this content

Code: Select all

<?php
header("Location: http://www.domain.com/webmail"); // redirect to domain web mail direction
exit(); //end excute script
?>

Re: Roundcube Update

Posted: Sun May 24, 2015 9:49 pm
by skurudo
plantalabs wrote:hi, i am looking to update to!! testing in a virtual machine now. anyone has succesfuly installed kolab (round cube exteneded project) on vesta?
Nope, but it's not that hard, I think. From manual it's pretty simple.
plantalabs wrote:

Code: Select all

header("Location: http://www.domain.com/webmail"); // redirect to domain web mail direction
Nice solution! ;-)

Re: Roundcube Update

Posted: Thu Jun 18, 2015 7:44 am
by skinniyah
Instead of using a redirect, you can do this:

1. Create subdomain in vestaCP (eg: webmail.yourdomain.com)
2. Remember, roundcube directory is /var/lib/roundcube
3. nano /home/admin/conf/web/apache2.conf
4. Look for the section with your new subdomain
5. change:
DocumentRoot /var/lib/roundcube
uncomment both<Directory> sections with #
6. save, exit
7. service apache2 restart

Your subdomain is working without redirects.