exim-retiolum module: optionalize rspamd log level
This commit is contained in:
parent
8a48f8dd68
commit
d343910e98
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue