Roundcube 0.8.1 released

Arieh

Verified User
Joined
May 27, 2008
Messages
1,308
Location
The Netherlands
Aloha!

As usual when a new stable release arrives, there are a few things
that didn't make it into that. Therefore we just published an update
release adding bug fixes, some minor feature improvements and, most
important, two fixes for a recently reported XSS vulnerability in
Roundcube's HTML message handling.

At the same same time, we also pushed out a small update for the 0.7
series with some of the important fixes back-ported. That's for all of
you who didn't dare to switch to the new and shiny 0.8 release series.

See the complete Changelog at http://trac.roundcube.net/wiki/Changelog
and download the new packages from http://roundcube.net/download.

All the best,
Thomas
 
Hello again

What an embarrassing mistake not updating the version number when
publishing a new release. Sigh! Please sorry for that!
But now the packages are updated and the version definitely is 0.8.1.
When re-downloading the files, please verify the md5 checksum is the
same as stated on http://roundcube.net/download

Now it's definitely time for the weekend :)

Best,
Thomas
 
I just upgraded Roundcube using custombuild in one of my servers, and the version number was correct when I log into Roundcube and click top left at "About", it says: "Roundcube Webmail 0.8.1". So it seems it was fixed right before DirectAdmin added it to custombuild. Nice! :)
 
Updated but below is the error I got :

tail: +: invalid number of lines
Updating mysql database ...
Editing roundcube configuration...
Roundcube 0.8.1 has been installed successfully.
This instance of Roundcube is up-to-date.
Have fun!
 
I think build script is not correct, below is what I found :

/usr/bin/perl -pi -e "s|\['create_default_folders'] = FALSE;|\['create_default_folders'] = TRUE;|" main.inc.php > /dev/null

it should be (Notice different in Capital Letter for True and False)

/usr/bin/perl -pi -e "s|\['create_default_folders'] = false;|\['create_default_folders'] = true;|" main.inc.php > /dev/null
 
Also, the problem of deleting/moving mail is because the config in build script is not correct. Something like

$rcmail_config['drafts_mbox'] = 'INBOX.Drafts';
$rcmail_config['junk_mbox'] = 'INBOX.spam';
$rcmail_config['sent_mbox'] = 'INBOX.Sent';
$rcmail_config['trash_mbox'] = 'INBOX.Trash';

is what build script did. But to make it work, just leave it default as :

$rcmail_config['drafts_mbox'] = 'Drafts';
$rcmail_config['junk_mbox'] = 'spam';
$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['trash_mbox'] = 'Trash';
 
After updating RC from 0.5.x to 0.8.1 it is impossible to delete messages in the Inbox. It seems that only the maps Inbox en Sent exist. Anyone else experienced this?
 
I'm on RoundCube 0.8.1 (I use automatic update) and when I click on delete from INBOX messages end up in trash. There's also an option to delete messages if for some reason they can't be moved to trash, but I don't know why that would happen.

Jeff
 
As I posted earlier, the build script from Custombuild is not correct. What you have to do is to open config file

/var/www/html/roundcube/config/main.inc.php

You will find below setting :

$rcmail_config['drafts_mbox'] = 'INBOX.Drafts';
$rcmail_config['junk_mbox'] = 'INBOX.spam';
$rcmail_config['sent_mbox'] = 'INBOX.Sent';
$rcmail_config['trash_mbox'] = 'INBOX.Trash';

Just change it to :

$rcmail_config['drafts_mbox'] = 'Drafts';
$rcmail_config['junk_mbox'] = 'spam';
$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['trash_mbox'] = 'Trash';

Your user that never log in to Roundcube will also have the problem that the Drafts, spam, Sent, Trash folders doesn't created automatically. You will have to change :
$rcmail_config['create_default_folders'] = TRUE;

To
$rcmail_config['create_default_folders'] = true;
 
Hello,

All 3 CustomBuilds have been updated on files1.directadmin.com.
If you're using a mirror, please allow 24 hours for rsync propogation.

Note that the paths above have been changed slightly, to match SquirrelMail.

These paths are in fact correct:
Code:
$rcmail_config['drafts_mbox'] = 'INBOX.Drafts';
$rcmail_config['junk_mbox'] = 'INBOX.spam';
$rcmail_config['sent_mbox'] = 'INBOX.Sent';
$rcmail_config['trash_mbox'] = 'INBOX.Trash';
The paths that were not correct have been changed to:
Code:
$rcmail_config['default_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.spam', 'INBOX.Trash');
$rcmail_config['create_default_folders'] = true;
which includes the create_default_folder value, as reported above (thanks).

Roundcube changed the config name from default_imap_folders to default_folders, hence CB didn't get a match with the perl regex.

John
 
Yesterday i was trying to update roundcube to version 0.8.1 from custombuild`s but after version check updates showed me that latest custombuild version of roundcube is 0.7.2

When the version roundcube 0.8.1 will be available in custombuild?

Thanks!
 
Does it still show roundcube out of date with the following commands?

Code:
cd /usr/local/directadmin/custombuild
./build update
./build versions
 
Hello!

Absolutely forgot about this, but now it`s ok. I have updated to newer version, thanks! :)
 
Back
Top