Disable roundcube and rspamd webui by default
This commit is contained in:
parent
5f49caec49
commit
e6e91b775a
3 changed files with 2 additions and 5 deletions
|
|
@ -11,7 +11,7 @@ in {
|
||||||
options.mailsystem.roundcube = {
|
options.mailsystem.roundcube = {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = "Whether to enable roundcube in order to provide a webmail interface";
|
description = "Whether to enable roundcube in order to provide a webmail interface";
|
||||||
};
|
};
|
||||||
hostName = lib.mkOption {
|
hostName = lib.mkOption {
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ in {
|
||||||
options.mailsystem.rspamd.webUi = {
|
options.mailsystem.rspamd.webUi = {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = "Whether to enable the rspamd webui on `https://${config.mailsystem.fqdn}/rspamd`";
|
description = "Whether to enable the rspamd webui on `https://${config.mailsystem.fqdn}/rspamd`";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,6 @@
|
||||||
virtualisation.memorySize = 1024;
|
virtualisation.memorySize = 1024;
|
||||||
mailsystem = {
|
mailsystem = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
roundcube.enable = false;
|
|
||||||
rspamd.webUi.enable = false;
|
|
||||||
certificateScheme = "selfsigned";
|
certificateScheme = "selfsigned";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue