summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorXavier Vello <xavier.vello@gmail.com>2019-12-14 19:50:09 +0100
committerXavier Vello <xavier.vello@gmail.com>2019-12-14 22:22:23 +0100
commit43df84e1a0c01a508e1a1373055a6831bc5de966 (patch)
tree025a8af17e8aee91c130fb73bdbca41f9fb40871 /tests
parent5fb707e61a0eea3b3f855efbd8e1b2e70b85bf5c (diff)
Fix dovecot in 19.09+
Dovecot now requires at least 1024bits of dh params. Test duration seems is not significantly increased.
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/config.nix b/tests/lib/config.nix
index b247c66..187dd91 100644
--- a/tests/lib/config.nix
+++ b/tests/lib/config.nix
@@ -1,5 +1,5 @@
{
- security.dhparams.defaultBitSize = 16; # really low for quicker tests
+ security.dhparams.defaultBitSize = 1024; # minimum size required by dovecot
# For slow non-kvm tests.
# nixos/modules/testing/test-instrumentation.nix also sets this. I don't know if there's a better way than etc to override theirs.