rspamd: restrict addresses we disable checks for to localhost
By default this includes private network subnets, but those should really use authentication instead, if they want to skip checks. Closes: #326
This commit is contained in:
parent
cc5f180427
commit
1a2d7a4bf5
2 changed files with 19 additions and 8 deletions
|
@ -132,6 +132,13 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
overrides = {
|
||||||
|
"options.inc" = {
|
||||||
|
text = ''
|
||||||
|
local_addrs = [::1/128, 127.0.0.0/8]
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
workers.rspamd_proxy = {
|
workers.rspamd_proxy = {
|
||||||
type = "rspamd_proxy";
|
type = "rspamd_proxy";
|
||||||
|
|
|
@ -10,12 +10,16 @@
|
||||||
# Enable second CPU core
|
# Enable second CPU core
|
||||||
virtualisation.cores = lib.mkDefault 2;
|
virtualisation.cores = lib.mkDefault 2;
|
||||||
|
|
||||||
# Don't make tests block on DNS requests that will never succeed
|
services.rspamd = {
|
||||||
services.rspamd.locals."options.inc".text = ''
|
# Don't make tests block on DNS requests that will never succeed
|
||||||
dns {
|
locals."options.inc".text = ''
|
||||||
nameservers = ["127.0.0.1"];
|
dns {
|
||||||
timeout = 0.0s;
|
nameservers = ["127.0.0.1"];
|
||||||
retransmits = 0;
|
timeout = 0.0s;
|
||||||
}
|
retransmits = 0;
|
||||||
'';
|
}
|
||||||
|
'';
|
||||||
|
# Relax `local_addrs` definition to default for tests, so mail doesn't get flagged as spam
|
||||||
|
overrides."options.inc".enable = false;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue