Roundcube Community Forum

 

user can't change password, server error [600]

Started by michaelrfc, August 16, 2024, 04:58:21 AM

Previous topic - Next topic

michaelrfc

Roundcube webmail: roundcubemail-1.6.8  in iRedMail-1.7.1,  DB is mysql, OS is openbsd 7.5.

more details in the config.inc.php:

$config['password_algorithm'] = "blf-crypt";
$config['password_algorithm_options'] = "blf-crypt";
$config['password_algorithm_prefix'] = "{BCRYPT}";
$config['password_dovecotpw'] = "/usr/local/bin/doveadm pw";
$config['password_dovecotpw_method'] = "BLF-CRYPT";
$config['password_dovecotpw_with_method'] = true;

any hints or ideas? Thanks.


michaelrfc

Yep, you killed it! thanks a lot.

The problem is solved finally.

correct config is as below:
$config['password_algorithm'] = "blowfish-crypt";     
$config['password_algorithm_options'] = "blf-crypt";
$config['password_algorithm_prefix'] = "{BLF-CRYPT}";
$config['password_dovecotpw'] = "/usr/local/bin/doveadm pw";
$config['password_dovecotpw_method'] = "BLF-CRYPT";
$config['password_dovecotpw_with_method'] = true;