RoundCube

I'm not sure where this thread is going ...

Are we asking that someone make changes to Roundcube?

Jeff
 
Is Roundcube worth installing?

I have a disabled version of roundcube onn the server, I would like to give users the choice.... But are the security issues addresed wit roundcube? is the team currently doing this project on the ball?
Enabling it just to have to deal with issues or worse, remove it when users are used to using it is not something I want to do.
 
You can enable RC in your server and be happy, just keep it updated. Every software can have bugs, but RoundCube project is under constant improvement and security issues are quickly fixed. You can follow the development here:
http://trac.roundcube.net/timeline

We plan to release RC 0.3-stable tomorrow.
 
Thanks...

I will read through the project notes.
I tend to like to wait 2 to 3 weeks before grabbing the newest stable release of anything.... Let the others be the testers!
 
Hopefully they fixed the imap issues so it doesnt take 10mins to login to webmail.
 
Hi,
I just installed RoundCudbe using the script and got no error upon installation.
The problem is when I restart apache using 'service httpd restart' I get the following error and when I try 'http://my_server_ip/roundcube' I get '403 Forbidden' error.
Please help me with this.
Starting httpd: [Tue Dec 31 10:45:29 2013] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 149 will probably never match because it overlaps an earlier Alias.

The line 149 in my httpd.conf is the one the script created for roundcube.
Code:
# Alias for RoundCube webmail
Alias /roundcube /var/www/html/roundcube/
 
Last edited:
Hi,
I just installed RoundCudbe using the script and got no error upon installation.
The problem is when I restart apache using 'service httpd restart' I get the following error and when I try 'http://my_server_ip/roundcube' I get '403 Forbidden' error.
Please help me with this.


The line 149 in my httpd.conf is the one the script created for roundcube.
Code:
# Alias for RoundCube webmail
Alias /roundcube /var/www/html/roundcube/
didd you try
./build rewrite_confs
then restarting httpd?
 
Thanks guys.
It turned out I just needed to make 'root' the owner of the actual roundcube folder the same as the symlink.
 
Thanks guys.
It turned out I just needed to make 'root' the owner of the actual roundcube folder the same as the symlink.

Just to expand upon this, because I was getting the same error. Do the following:

Code:
cd /var/www/html
chown -h user:group roundcube

I wanted to put exactly what you type in because at first I ran into the problem because I wasn't using the '-h' option, next I was running into a problem because I was putting a trailing '/' behind roundcube when it shouldn't have been there.
 
Back
Top