fix dovecot 2.3 ssl_dh

This commit is contained in:
Robin Raymond 2018-02-13 13:18:31 +01:00
parent b75575f02e
commit f6546a1a8e
5 changed files with 36 additions and 0 deletions

View file

@ -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;