Roundcube 1.0.1 is released

Arieh

Verified User
Joined
May 27, 2008
Messages
1,236
Location
The Netherlands
Roundcube 1.0.1 is released
Dear Roundcube users

We can proudly announce the first service release to update the stable
version 1.0 of Roundcube webmail. It contains some important bug fixes
and improvements, primarily a fix for the unintentional redirect from
the compose page in Google Chrome which likely started to appear after
a recent Chrome update.

It's considered stable and we recommend to update all productive
installations of Roundcube with this version. Download it from
http://roundcube.net/download, see the full changelog here:
http://trac.roundcube.net/wiki/Changelog

Please note that the update includes a small MySQL database schema
change, thus make sure you run the update script.

Kind regards,
Thomas
RELEASE 1.0.1

Support 'error' and 'body_file' return attribs in 'message_before_send' hook (#1489595)
Apply user-specific replacements to group's base_dn property (#1489779)
Fix missing email address when importing contacts from outlook csv (#1489830)
Fix bug where "With attachment" option in search filter wasn't selected after return from mail view (#1489774)
Fix "washing" of unicoded style attributes (#1489777)
Fix unintentional redirect from compose page in Webkit browsers (#1489789)
Fix messages index cache update under some conditions (e.g. proxy) (#1489756)
Fix lack of translation of special folders in some configurations (#1489799)
Fix XSS issue in plain text spellchecker (#1489806)
Fix invalid page title for some folders (1489804)
Fix redundant alert message on over-size uploads (#1489817)
Fix next message display after removing a message (#1489800)
Fix missing Mail-Followup-To header in sent mail (#1489829)
Fix error when spell-checking an empty text (#1489831)
Avoid popupmenus being closed when scrollbar is clicked (#1489832)
Add proxy_whitelist configuration option (#1489729)
Fix identities_level=4 handling in new_user_dialog plugin (#1489840)
Fix various db_prefix issues (#1489839)
Fix too small length of users.preferences column data type on MySQL
Fix redundant warning when switching from html to text in empty editor (#1489819)
Fix invalid host validation on login (#1489841)
Fix IMAP connection test in installer so it is aware of imap_auth_type (#1489746)
 
I see this after a upgrade from 0.8x to 1.01.
config.inc.php was not found.
Please read the INSTALL instructions!

What should i do? How can i build the right configuration-file?
 
Last edited:
Same problem again:
WARNING: Mimetype to file extension mapping doesn't work properly!
Please check the 'mime_types' config option and run this script again.
However, it was working correctly before (see 1.0.0 thread). With this update, the mime.types file got removed completely.
 
I don't know if that is the correct place.
I fixed it again by using this command which I got from smtalk for version 1.0:
Code:
wget -O /var/www/html/roundcube/config/mime.types http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types

Seems to me a lot more must have this issue because I had it on all DA Centos 6.0 servers. So question is who is enabling mime types in the roundcube config and who is or should be putting the correct mime.types file in there.
 
Yes, so did I. Missing mime types, config.inc.php with wrong access rights and something about rc_util not being available.
 
About the mime.types SMtalk found it was an issue Custombuild which will be fixed in the next release.
I don't have a problem with access rights and rc_util errors on any servers as far as I could see.
 
For anyone running into the access rights issue on their config.inc.php file, please let us know the following:

1) What is php running as? Use this guide so you can tell use the uid/gid of the process (the system call for /usr/bin/id)
http://help.directadmin.com/item.php?id=532

2) What are the permissions on your config.inc.php?
Code:
ls -la /var/www/html/roundcube/config/config.inc.php

3) What are the php and mod_ruid2 settings in your options.conf?
Code:
cd /usr/local/directadmin/custombuild
./build options
Even if you are able to figure it out, please let us know so we can fix it for others.

John
 
Hi John,

We are having the same problem with upgrading Roundcube to version 1.0.1
We are running CentOS 6.5 x64, Apache 2.4.9, FastCGI, PHP 5.5.12 with CB2.0

The error is:

Code:
CONFIGURATION ERROR

config.inc.php was not found.
Please read the INSTALL instructions!

It looks like the user/group and the CHMOD right are not right:

Code:
/var/www/html/roundcube/config
-r--r-----  1 webapps apache   4467 May 16 14:09 config.inc.php
-rw-r--r--  1 webapps webapps  3908 May  9 16:08 config.inc.php.sample
-rw-r--r--  1 webapps webapps 44652 May  9 16:08 defaults.inc.php
-rw-r--r--  1 webapps webapps 50737 May 16 14:09 mime.types
-rw-r--r--  1 webapps webapps  2815 May  9 16:08 mimetypes.php

When I change the config.inc.php to webapps.webapps with "chown webapps.webapps config.inc.php" still no luck.

When I change the config.inc.php to CHMOD 444 it works but I am not sure if this is how it should be:

Code:
chmod 444 /var/www/html/roundcube/config/config.inc.php

Now the roundcube works.

When I look at an older Rundcube (0.9.5) I don't see the config.inc.php but it looks like the same config is in db.inc.php
The CHMOD on the older Roundcube 0.9.5 is 644.
 
Please see step #1 above (in post #9) to see what php is running as.
From there, we can figure out what's going on.

John
 
Is use_hostname_for_alias set to auto in the options.conf file? And are there any custom files used in custom/ ?
 
I have a bunch of servers with Centos 5 and 6 that had this problem. This gave me a lot of chances to see what was really missing and what worked.
I had Directadmin server 1.45.2 with PHP 5.3 and mySQL 5.1

for me this is all I had to do to get RoundCube 1.0.1 working again.
chmod 644 /var/www/html/roundcube/config/config.inc.php
 
Back
Top