Roundcube password problem

Lokozcom

Verified User
Joined
Jan 11, 2017
Messages
6
Hello

I have a strange problem in roundcube with password plugin. Plugin is activated and working with the same configuration on others servers. When I changing password I have a error : "The password changing feature has been disabled".

 
Hello,

I don't recall seeing anything of this kind before... did you try to check RoudCube logs under /var/www/html/roundcube/logs/?
 
Checked error logs under /var/log/directadmin/?

Roundcube uses Directadmin API to change an user's password. The driver for communicating is located under /var/www/html/roundcube/plugins/password/drivers/directadmin.php

So you might want to debug it there, and test/change settings in /var/www/html/roundcube/plugins/password/config.inc.php
 
Changing password via api not working, I have this result:

Code:
Array
(
    [error] => 1
    [text] => The password changing feature has been disabled
    [string] => 2
)

request:

Code:
$sock->query('/CMD_CHANGE_EMAIL_PASSWORD',
     array(
  'email' => "email@email",
  'oldpassword' => "oldpass",
  'password1' => "newpass",
  'password2' => "newpass",
  'api' => 1
     ));

$result = $sock->fetch_parsed_body();
 
email_ftp_password_change=1 should be set in directadmin.conf for it to work.
 
Back
Top