Quantcast
Channel: Control Panel – IPSERVERONE
Viewing all articles
Browse latest Browse all 144

How to enable Roundcube webmail Password Change plugin

$
0
0

By default the Roundcube webmail should come with the plugin that allow user to change password which compatible with Directadmin control panel.

1.) First to enable the plugin feature, first edit the Roundcube webmail main configuration file, add the plugin name into the plugin array settings by looking for the line below:

$rcmail_config['plugins'] = array();

Add the plugin name into the array bracket as below:

$rcmail_config['plugins'] = array(password);

2.) Make sure the plugin folder is in place and with the correct name. ( WEBMAIL_DIR/plugins/password/ )

3.) Next, edit the password change plugin settings ( WEBMAIL_DIR/plugins/password/config.inc.php ).

4.) Change the driver settings of the plugin referring to below:

$rcmail_config['password_driver'] = ‘sql‘;

Change to:

$rcmail_config['password_driver'] = ‘directadmin‘;

5.) Then, if the directadmin requires SSL, look for below line and edit it.

$rcmail_config['password_directadmin_host'] = ‘tcp://localhost‘;

Change to:

$rcmail_config['password_directadmin_host'] = ‘ssl://localhost‘;


Viewing all articles
Browse latest Browse all 144

Trending Articles