So...
I coded a password changer plugin for roundcube0.3...
You only unpack this to the plugin folder.
Then you need to copy the "config.inc.php.dist" in "config.inc.php".
Edit this file:
Code:
$rcmail_config['password_driver'] = 'sql';
$rcmail_config['password_db_dsn'] = 'mysql://roundcube:password@localhost/ispcp';
$rcmail_config['ispcp_db_pass_key'] = '';
$rcmail_config['ispcp_db_pass_iv'] = '';
Make the changes on your configuration.
You will find the keys in the "/var/www/ispcp/gui/include/ispcp-db-keys.php".
At least you need to activate the plugin in the " config/main.inc.php" of roundcube
Code:
$rcmail_config['plugins'] = array('ispcp_pw_changer');
The sqluser from Roundcube needs rights through the sql-table "mail_users" of the ispcp database!!!!
Have fun with it.
Cu Sascha