summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorVictor SENE <victor@sene.ovh>2018-10-03 11:22:50 +0200
committerRobin Gloster <mail@glob.in>2018-11-28 18:52:10 +0100
commit2f8073bd92a8289d52c19e574ea3db96911d9e82 (patch)
treea7a8003b60e6067348512b100a8e137345f83bfd /nixos/modules/services
parent195fa0dafc1b50c576bd85893a8c70fb7a66b280 (diff)
downloadnixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar.gz
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar.bz2
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar.lz
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar.xz
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.tar.zst
nixpkgs-2f8073bd92a8289d52c19e574ea3db96911d9e82.zip
roundcube: IPv6 by default
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/mail/roundcube.nix4
1 files 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 {