Dear friends of Roundcube
We're proud to announce the beta release of the next major version 0.9. With this milestone we introduce some important changes under the hood as well as some nice and long-awaited features:
the strong base of Roundcube's functionality have been extracted and decoupled into a Framework package. They can be used individually in other open source projects looking for solid functionality around IMAP, SMTP, MIME-handling and more.
add support for SQLite3 the PEAR:MDB2 dependency was dropped and Roundcube now uses the native PHP Data Objects (PDO). ATTENTION: due a small lack in the MySQL PDO driver, this version of Roundcube requires PHP 5.3 when using the MySQL database.
And of course plenty of small improvements and bug fixes.
See the complete Changelog at http://trac.roundcube.net/wiki/Changelog and download the new packages from http://roundcube.net/download. Please note that this is still a beta release and we recommend to test it on a separate environment. And don't forget to backup your data before installing.
Have fun and let us know how the new Roundcube performs in your environment.
Cheers, Thomas
P.S. We're still looking for volunteers helping us to keep the translations of the Roundcube UI up-to-date. To make it even easier for you, we recently moved to Transifex. Visit our project at https://www.transifex.com/projects/p/roundcube-webmail/ and join our translation teams.
Am 07.01.2013 22:58, schrieb Thomas Bruederli:
P.S. We're still looking for volunteers helping us to keep the translations of the Roundcube UI up-to-date. To make it even easier for you, we recently moved to Transifex. Visit our project at https://www.transifex.com/projects/p/roundcube-webmail/ and join our translation teams.
Well, I'd like to, but this damn "Join language translation" button doesn't still do anything except than showing that it's being pressed (IE8).
See also my yesterday's posts, 01:32 and 01:41 (no response to it yet).
Is it possible to add me to de_DE and de_CH (registered user 'myfreexp') without having to use this non-working button...?
Hi all,
For your information, currently version 0.9 beta breaks at least the following plugins due to change in database access
Error messages in log looks like : PHP Fatal error: Class 'rcube_mdb2' not found in RCPATH/plugins/vacation/lib/drivers/sql.php on line 34
A solution if to replace for these plugins in lib/drivers/sql.php the line $db = rcube_db::factory($dsn, '', FALSE); by if (!class_exists('rcube_db')) { $db = new rcube_mdb2($dsn, '', FALSE); } else { $db = rcube_db::factory($dsn, '', FALSE); } which should be compatible with both pre and post 0.9 versions.
Issues have been filled for this three plugins in respective bugtrackers on github.
Regards,