exim-retiolum module: optionalize rspamd log level

This commit is contained in:
tv 2019-06-24 03:16:02 +02:00
parent 8a48f8dd68
commit d343910e98

View File

@ -35,6 +35,19 @@ in {
default = false;
};
locals = {
logging = {
level = mkOption {
type = types.enum [
"error"
"warning"
"notice"
"info"
"debug"
"silent"
];
default = "notice";
};
};
options = {
local_networks = mkOption {
type = types.listOf types.cidr;