This commit is contained in:
mwiegand 2021-07-08 20:09:08 +02:00
parent 3e14f43109
commit 1adcf72680
3 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@ def column_width(column, table):
%>\ %>\
$TTL 600 $TTL 600
@ IN SOA ns.sublimity.de. admin.sublimity.de. ( @ IN SOA ns.sublimity.de. admin.sublimity.de. (
${serial} ;Serial 2021070820 ;Serial
600 ;Refresh 600 ;Refresh
300 ;Retry 300 ;Retry
1209600 ;Expire 1209600 ;Expire

View file

@ -1,6 +1,6 @@
connect = host=${host} dbname=${name} user=${user} password=${password} connect = host=${host} dbname=${name} user=${user} password=${password}
driver = pgsql driver = pgsql
default_pass_scheme = PLAIN-MD5 default_pass_scheme = SHA512-CRYPT
password_query = SELECT CONCAT(users.name, '@', domains.name) AS user, password\ password_query = SELECT CONCAT(users.name, '@', domains.name) AS user, password\
FROM users \ FROM users \

View file

@ -46,11 +46,11 @@ $config['password_force_new_user'] = false;
// Possible options: des-crypt, ext-des-crypt, md5-crypt, blowfish-crypt, // Possible options: des-crypt, ext-des-crypt, md5-crypt, blowfish-crypt,
// sha256-crypt, sha512-crypt, md5, sha, smd5, ssha, ssha512, samba, ad, dovecot, clear. // sha256-crypt, sha512-crypt, md5, sha, smd5, ssha, ssha512, samba, ad, dovecot, clear.
// For details see password::hash_password() method. // For details see password::hash_password() method.
$config['password_algorithm'] = 'md5'; $config['password_algorithm'] = 'sha512-crypt';
// Password prefix (e.g. {CRYPT}, {SHA}) for passwords generated // Password prefix (e.g. {CRYPT}, {SHA}) for passwords generated
// using password_algorithm above. Default: empty. // using password_algorithm above. Default: empty.
$config['password_algorithm_prefix'] = ''; $config['password_algorithm_prefix'] = '{SHA512-CRYPT}';
// Path for dovecotpw/doveadm-pw (if not in the $PATH). // Path for dovecotpw/doveadm-pw (if not in the $PATH).
// Used for password_algorithm = 'dovecot'. // Used for password_algorithm = 'dovecot'.
@ -135,7 +135,7 @@ $config['password_db_dsn'] = 'pgsql://mailserver:${mailserver_db_password}@local
// %q is replaced with the hashed password before the change // %q is replaced with the hashed password before the change
// Escaping of macros is handled by this module. // Escaping of macros is handled by this module.
// Default: "SELECT update_passwd(%c, %u)" // Default: "SELECT update_passwd(%c, %u)"
$config['password_query'] = "UPDATE users SET password=MD5(%p) FROM domains WHERE domains.id = domain_id AND domains.name = %d AND users.name = %l"; $config['password_query'] = "UPDATE users SET password=%P FROM domains WHERE domains.id = domain_id AND domains.name = %d AND users.name = %l";
// By default the crypt() function which is used to create the %c // By default the crypt() function which is used to create the %c
// parameter uses the md5 algorithm (deprecated, use %P). // parameter uses the md5 algorithm (deprecated, use %P).