Its the long awaited stable release 1.4 of Roundcube webmail.
After more than two years of hard work, Roundcube finally gets the responsive skin with full mobile device support – called elastic.
[Read more…]Its the long awaited stable release 1.4 of Roundcube webmail.
After more than two years of hard work, Roundcube finally gets the responsive skin with full mobile device support – called elastic.
[Read more…]Roundcube is web based open source multiuser IMAP client, yesterday I upgraded my older installation to a new stable version 0.8.2.
After successfully installation I was able to see a new redesigned login window with stupid server field. [Read more…]
Another tricky error after Debian squeeze upgrade:
ERROR: Wrong ‘suhosin.session.encrypt’ option value. Read REQUIREMENTS section in INSTALL file or use Roundcube Installer, please!
The fix is very trivial:
1 2 3 4 | vim /etc/php5/apache2/php.ini # Add this lines to the bottom of the config: [suhosin] suhosin.session.encrypt = Off |
vim /etc/php5/apache2/php.ini # Add this lines to the bottom of the config: [suhosin] suhosin.session.encrypt = Off
Solution for php5-fpm:
1 | php_admin_value[suhosin.session.encrypt] = Off |
php_admin_value[suhosin.session.encrypt] = Off
To upgrade the database style to roundcube version 0.9.0 I used a little workaround to prevent suhosin error reporting:
1 | php -d suhosin.session.encrypt=off -d date.timezone=Europe/Berlin bin/updatedb.sh --package=roundcube --version=0.8.2 --dir=`pwd`/SQL |
php -d suhosin.session.encrypt=off -d date.timezone=Europe/Berlin bin/updatedb.sh --package=roundcube --version=0.8.2 --dir=`pwd`/SQL
There are many configuration options with inpact on performance in Roundcube and behind it (Database and Webserver). As Roundcube installation administrator you can set them to some defaults and prevent users to change them by using the ‘dont_override‘ option.
I tested some options and created my tiny boost list.
Here’s the list of options with impact on performance
Messages listing is a main task of a mail client. Sorting is expensive. First of all you should use an IMAP server with SORT capability. If message list displaying is still too slow you should set ‘message_sort_col’ to an empty string.
‘message_sort_col’
[Read more…]