RoundCube Webmail 0.3-stable

Roundcube Password plugin

I spent a little while figuring this out. On one of my servers, trying to use the change password plugin would just result in a blank browser page, and a segfault error in /var/log/httpd/error.log

The problem:

Password plugin is confiugred in/var/www/html/roundcube/plugins/password/config.inc.php

First, this must be set near the top:

Code:
 $rcmail_config['password_driver'] = 'directadmin';

Then these two settings are used to tell it how to connect to DA

Code:
$rcmail_config['password_directadmin_host'] = 'tcp://localhost';
$rcmail_config['password_directadmin_port'] = 2222;

However if your DirectAdmin is SSL-enabled, you must change the first line there to be:

Code:
$rcmail_config['password_directadmin_host'] = 'ssl://localhost';
 
Back
Top