From 2f8073bd92a8289d52c19e574ea3db96911d9e82 Mon Sep 17 00:00:00 2001 From: Victor SENE Date: Wed, 3 Oct 2018 11:22:50 +0200 Subject: [PATCH] roundcube: IPv6 by default --- nixos/modules/services/mail/roundcube.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix index fc655add00e..4639af33b63 100644 --- a/nixos/modules/services/mail/roundcube.nix +++ b/nixos/modules/services/mail/roundcube.nix @@ -11,8 +11,8 @@ in listenAddress = mkOption { type = types.str; - default = 127.0.0.1; - description = "Listening address"; + default = "[::]"; + description = "Listening address. IPv6 addresses must be enclosed in square brackets"; }; listenPort = mkOption {