Displaying 4 results from an estimated 4 matches for "password_algorithm_prefix".
2019 Feb 20
2
Using SHA256/512 for SQL based password
...change their password via the Postfixadmin manager.? Sigh.
> Here's how I configured my roundcube's password plugin to keep things
> together ($roundcubefolder/plugins/password/config.php)
>
> $config['password_algorithm']??????? = 'dovecot';
> $config['password_algorithm_prefix'] = '{SHA512-CRYPT}';
> $config['password_dovecotpw_method'] = 'SHA512-CRYPT';
> $config['password_query']??????????? = "UPDATE mail.users SET password=%P WHERE email=%u LIMIT 1";
>
> I left other fields alone.
>
> Yassine.
>
Thanks...
2019 Feb 12
6
Using SHA256/512 for SQL based password
I have trying to find how to set the dovecot-sql.conf for using
SHA256/512.? I am going to start clean with the stronger format, not
migrate from the old MD5.? It seems all I need is:
driver = mysql connect = host=/var/lib/mysql/mysql.sock dbname=postfix
user=postfix password=$Postfix_Database_Password default_pass_scheme =
SHAxxx-CRYPT # following should all be on one line. password_query =
2019 Feb 20
0
Using SHA256/512 for SQL based password
...efault_pass_scheme = SHAxxx-CRYPT [...]
How do your users change their password ?
Here's how I configured my roundcube's password plugin to keep things
together ($roundcubefolder/plugins/password/config.php)
$config['password_algorithm']??????? = 'dovecot';
$config['password_algorithm_prefix'] = '{SHA512-CRYPT}';
$config['password_dovecotpw_method'] = 'SHA512-CRYPT';
$config['password_query']??????????? = "UPDATE mail.users SET password=%P WHERE email=%u LIMIT 1";
I left other fields alone.
Yassine.
-------------- next part -----------...
2019 Feb 20
0
Using SHA256/512 for SQL based password
...Robert Moskowitz via dovecot wrote:
>
>> Here's how I configured my roundcube's password plugin to keep things
>> together ($roundcubefolder/plugins/password/config.php)
>>
>> $config['password_algorithm']??????? = 'dovecot';
>> $config['password_algorithm_prefix'] = '{SHA512-CRYPT}';
>> $config['password_dovecotpw_method'] = 'SHA512-CRYPT';
>> $config['password_query']??????????? = "UPDATE mail.users SET password=%P WHERE email=%u LIMIT 1";
>>
>> I left other fields alone.
>>
>&...