fix dovecot 2.3 ssl_dh
This commit is contained in:
parent
b75575f02e
commit
f6546a1a8e
5 changed files with 36 additions and 0 deletions
21
default.nix
21
default.nix
|
@ -325,6 +325,27 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
dovecot23 = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description =
|
||||
''
|
||||
Activate this if you use Dovecot 2.3, so SSL works.
|
||||
TODO: Remove this!
|
||||
'';
|
||||
};
|
||||
|
||||
dhParamBitLength = mkOption {
|
||||
type = types.int;
|
||||
default = 2048;
|
||||
description =
|
||||
''
|
||||
Length of the Diffie Hillman prime used (in bits). It might be a good
|
||||
idea to set this to 4096 for security purposed, but it will take a _very_
|
||||
long time to create this prime on startup.
|
||||
'';
|
||||
};
|
||||
|
||||
debug = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue