search for: password_crypt_hash

Displaying 2 results from an estimated 2 matches for "password_crypt_hash".

2019 Feb 20
0
Using SHA256/512 for SQL based password
...d //????? %P is replaced with the crypted/hashed new password //???????? according to configured password_method [...} // Deprecated macros: //????? %c is replaced with the crypt version of the new password, MD5 if available //???????? otherwise DES. More hash function can be enabled using the password_crypt_hash //???????? configuration parameter. //????? %D is replaced with the dovecotpw-crypted version of the new password [...] Notice the difference b/w %p and %P. Also notice that %D is marked as deprecated. > And in mysql, I believe the table is mailbox. > Oh that depends entirely on your c...
2019 Feb 20
2
Using SHA256/512 for SQL based password
On 2/20/19 5:09 AM, Yassine Chaouche via dovecot wrote: > On 2/12/19 5:05 PM, Robert Moskowitz via dovecot wrote: >> 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: >> [...] default_pass_scheme = SHAxxx-CRYPT [...] > > How