Displaying 2 results from an estimated 2 matches for "password_method".
2019 Feb 20
0
Using SHA256/512 for SQL based password
...password plugin :
// The SQL query used to change the password.
// The query can contain the following macros that will be expanded as follows:
//????? %p is replaced with the plaintext new password
//????? %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 versio...
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