Displaying 4 results from an estimated 4 matches for "password_dovecotpw_method".
2019 Feb 20
2
Using SHA256/512 for SQL based password
...ow 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 much better info than I was seeing in my googling.? Except I
would not use %...
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
...ssword ?
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 --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/piperm...
2019 Feb 20
0
Using SHA256/512 for SQL based password
...oundcube'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 much better info than I was seeing in my googlin...