fix dovecot 2.3 ssl_dh
This commit is contained in:
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;
|
||||
|
||||
Reference in New Issue
Block a user