diff --git a/mailsystem/roundcube.nix b/mailsystem/roundcube.nix index bebffaf..1960785 100644 --- a/mailsystem/roundcube.nix +++ b/mailsystem/roundcube.nix @@ -11,7 +11,7 @@ in { options.mailsystem.roundcube = { enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "Whether to enable roundcube in order to provide a webmail interface"; }; hostName = lib.mkOption { diff --git a/mailsystem/rspamd.nix b/mailsystem/rspamd.nix index 55079ed..093be1e 100644 --- a/mailsystem/rspamd.nix +++ b/mailsystem/rspamd.nix @@ -28,7 +28,7 @@ in { options.mailsystem.rspamd.webUi = { enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "Whether to enable the rspamd webui on `https://${config.mailsystem.fqdn}/rspamd`"; }; diff --git a/tests/common/server.nix b/tests/common/server.nix index 9a47284..ff60d5d 100644 --- a/tests/common/server.nix +++ b/tests/common/server.nix @@ -4,9 +4,6 @@ virtualisation.memorySize = 1024; mailsystem = { enable = true; - - roundcube.enable = false; - rspamd.webUi.enable = false; certificateScheme = "selfsigned"; }; };