Increase default DKIM key bits to 2048
This is the current recommendation in RFC 8301 from early 2018. Fixes: #333
This commit is contained in:
parent
57d9624c71
commit
2204f55329
2 changed files with 8 additions and 2 deletions
|
@ -976,9 +976,9 @@ in
|
|||
|
||||
dkimKeyBits = mkOption {
|
||||
type = types.int;
|
||||
default = 1024;
|
||||
default = 2048;
|
||||
description = ''
|
||||
How many bits in generated DKIM keys. RFC6376 advises minimum 1024-bit keys.
|
||||
How many bits in generated DKIM keys. RFC8301 suggests a minimum RSA key length of 2048 bit.
|
||||
|
||||
If you have already deployed a key with a different number of bits than specified
|
||||
here, then you should use a different selector ({option}`mailserver.dkimSelector`). In order to get
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue