RoundCube 1.2.2 released

DirectAdmin Support

Administrator
Staff member
Joined
Feb 27, 2003
Messages
8,500
Hi John,

Because of some plugin that are not compatible with 1.2.x branch i'm still using 1.1.15, can you please also update the 1.1.x branch adding the 1.1.16 file to the repository and let me have the md5? (I'm using custom_versions.txt file to mantain that)

Thanks
 
Found a bug in the updated driver, curl didn't like tcp://, so created httpsocket 3.0.1 that swaps tcp:// to be http://.

The new RoundCube driver is here:
http://files1.directadmin.com/services/all/roundcube/directadmin-3.1.php

for:
plugins/password/drivers/directadmin.php

It can't to the http client to https header checks, like the old raw socket could, so the
Code:
$config['password_directadmin_host'] = 'tcp://localhost';
$config['password_directadmin_host'] = 'ssl://localhost';
must be correct.

CustomBuild will set that for you if you change DA to use SSL.. but if you go backwards, it doesn't look like it will set tcp:// in the config.inc.php, so you'd have to do that manually (but it's not often people go backwards).

I've had to re-pack the RoundCube 1.2.2 package with the updated driver (3.0.0 -> 3.0.1), so if you get errors about the password changing plugin not liking the "tcp://" protocol, just run an update again:
Code:
./build update
./build roundcube
Changes made are currently on files1, so other mirrors may take up to 24 hours to sync.

I've added 1.1.6 to files1 with 3.0.1 update, for anyone who needs it:
Code:
[root@files1 roundcube]# md5sum roundcubemail-1.1.6.tar.gzdccb6db607adcbe3cad6114d0e6e1832  roundcubemail-1.1.6.tar.gz

John
 
Back
Top