Displaying 4 results from an estimated 4 matches for "password_algorithm".
2019 Feb 20
2
Using SHA256/512 for SQL based password
...Many never do!? Those that do, use the Roundcube plugin, or ask me to
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 LIMI...
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
...gt; migrate from the old MD5.? It seems all I need is:
> [...] default_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";...
2019 Feb 20
0
Using SHA256/512 for SQL based password
On 2/20/19 3:28 PM, 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 e...