From d340e3f7f9b2b007402a7a5e8271a78a5c01f6c4 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 16 Jul 2020 10:59:05 +0200 Subject: [PATCH 1/2] containers/mailserver/dovecot: increase max concurrent connections --- nix/os/containers/mailserver.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/os/containers/mailserver.nix b/nix/os/containers/mailserver.nix index 4fa7c1c..532dca3 100644 --- a/nix/os/containers/mailserver.nix +++ b/nix/os/containers/mailserver.nix @@ -45,6 +45,10 @@ in args // { postmaster_address = "mail@stefanjunker.de" mail_plugins = $mail_plugins sieve } + + protocol imap { + mail_max_userip_connections = 64 + } ''; }; From 300831b25ca1fa9f2d54bb88e20519a25810ec4d Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 16 Jul 2020 10:59:42 +0200 Subject: [PATCH 2/2] vmd32387.contaboserver.net/nixos: set stateVersion --- nix/os/devices/vmd32387.contaboserver.net/system.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nix/os/devices/vmd32387.contaboserver.net/system.nix b/nix/os/devices/vmd32387.contaboserver.net/system.nix index 3cfa21e..2f0f529 100644 --- a/nix/os/devices/vmd32387.contaboserver.net/system.nix +++ b/nix/os/devices/vmd32387.contaboserver.net/system.nix @@ -119,4 +119,12 @@ in { localAddress = "192.168.100.17"; }; }; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "20.03"; # Did you read the comment? }