Disable roundcube and rspamd webui by default

This commit is contained in:
Thomas Preisner 2024-12-28 14:55:55 +01:00
parent fcd5cb97bc
commit f6b4f79bfd
3 changed files with 2 additions and 5 deletions

View file

@ -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 {

View file

@ -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`";
};

View file

@ -4,9 +4,6 @@
virtualisation.memorySize = 1024;
mailsystem = {
enable = true;
roundcube.enable = false;
rspamd.webUi.enable = false;
certificateScheme = "selfsigned";
};
};