nit: fix indentation

We seem to use 2 spaces everywhere else in this file.
This commit is contained in:
Jeremy Fleischman 2025-05-08 12:04:19 -07:00
parent bb34b1bb24
commit 74e4fb1361
No known key found for this signature in database

View File

@ -834,12 +834,12 @@ in
type = types.nullOr types.int; type = types.nullOr types.int;
default = if cfg.dkimDomainPrivateKeyFiles == null then 1024 else null; default = if cfg.dkimDomainPrivateKeyFiles == null then 1024 else null;
description = '' description = ''
How many bits in generated DKIM keys. RFC6376 advises minimum 1024-bit keys. How many bits in generated DKIM keys. RFC6376 advises minimum 1024-bit keys.
If you have already deployed a key with a different number of bits than specified 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 here, then you should use a different selector ({option}`mailserver.dkimSelector`). In order to get
this package to generate a key with the new number of bits, you will either have to this package to generate a key with the new number of bits, you will either have to
change the selector or delete the old key file. change the selector or delete the old key file.
''; '';
}; };