refactor: split mail into modules
This commit is contained in:
parent
3979e9b2b9
commit
71fdea75be
7 changed files with 438 additions and 416 deletions
143
modules/mail/rspamd.nix
Normal file
143
modules/mail/rspamd.nix
Normal file
|
@ -0,0 +1,143 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
domain = "rspamd.${config.networking.domain}";
|
||||
in
|
||||
{
|
||||
sops.secrets."rspamd-password".owner = config.users.users.rspamd.name;
|
||||
users.users.rspamd.extraGroups = [ "redis-rspamd" ];
|
||||
services = {
|
||||
rspamd = {
|
||||
enable = true;
|
||||
postfix.enable = true;
|
||||
locals = {
|
||||
"worker-controller.inc".source = config.sops.secrets."rspamd-password".path;
|
||||
"redis.conf".text = ''
|
||||
read_servers = "/run/redis-rspamd/redis.sock";
|
||||
write_servers = "/run/redis-rspamd/redis.sock";
|
||||
'';
|
||||
# headers in spamassasin style to not break old sieve scripts
|
||||
"worker-proxy.inc".text = ''
|
||||
spam_header = "X-Spam-Flag";
|
||||
'';
|
||||
"milter_headers.conf".text = ''
|
||||
use = ["x-spam-level", "x-spam-status", "x-spamd-result", "authentication-results" ];
|
||||
'';
|
||||
"neural.conf".text = ''
|
||||
servers = "/run/redis-rspamd/redis.sock";
|
||||
enabled = true;
|
||||
'';
|
||||
"neural_group.conf".text = ''
|
||||
symbols = {
|
||||
"NEURAL_SPAM" {
|
||||
weight = 0.5; # fairly low weight since we don't know how this will behave
|
||||
description = "Neural network spam";
|
||||
}
|
||||
"NEURAL_HAM" {
|
||||
weight = -0.5;
|
||||
description = "Neural network ham";
|
||||
}
|
||||
}
|
||||
'';
|
||||
"dmarc.conf".text = ''
|
||||
reporting {
|
||||
enabled = true;
|
||||
email = 'reports@${config.networking.domain}';
|
||||
domain = '${config.networking.domain}';
|
||||
org_name = '${config.networking.domain}';
|
||||
from_name = 'DMARC Aggregate Report';
|
||||
}
|
||||
'';
|
||||
"dkim_signing.conf".text = ''
|
||||
selector = "quitte2024";
|
||||
allow_username_mismatch = true;
|
||||
allow_hdrfrom_mismatch = true;
|
||||
use_domain_sign_local = "ifsr.de";
|
||||
path = /var/lib/rspamd/dkim/$domain.$selector.key;
|
||||
|
||||
'';
|
||||
|
||||
"multimap.conf".text =
|
||||
let
|
||||
local_ips = pkgs.writeText "localhost.map" ''
|
||||
::1
|
||||
127.0.0.1
|
||||
'';
|
||||
tud_ips = pkgs.writeText "tud.map" ''
|
||||
141.30.0.0/16
|
||||
141.76.0.0/16
|
||||
'';
|
||||
in
|
||||
''
|
||||
WHITELIST_SENDER_DOMAIN {
|
||||
type = "from";
|
||||
filter = "email:domain";
|
||||
map = "/var/lib/rspamd/whitelist.sender.domain.map";
|
||||
action = "accept";
|
||||
}
|
||||
WHITELIST_SENDER_EMAIL {
|
||||
type = "from";
|
||||
map = "/var/lib/rspamd/whitelist.sender.email.map";
|
||||
action = "accept";
|
||||
}
|
||||
BLACKLIST_SENDER_DOMAIN {
|
||||
type = "from";
|
||||
filter = "email:domain";
|
||||
map = "/var/lib/rspamd/blacklist.sender.domain.map";
|
||||
action = "reject";
|
||||
}
|
||||
BLACKLIST_SENDER_EMAIL {
|
||||
type = "from";
|
||||
map = "/var/lib/rspamd/blacklist.sender.email.map";
|
||||
action = "reject";
|
||||
}
|
||||
BLACKLIST_SUBJECT_KEYWORDS {
|
||||
type = "header";
|
||||
header = "Subject"
|
||||
map = "/var/lib/rspamd/blacklist.keyword.subject.map";
|
||||
action = "reject";
|
||||
regexp = true;
|
||||
}
|
||||
RECEIVED_LOCALHOST {
|
||||
type = "ip";
|
||||
action = "accept";
|
||||
map = ${local_ips};
|
||||
}
|
||||
RECEIVED_TU_NETWORKS {
|
||||
type = "ip";
|
||||
map = ${tud_ips};
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
redis = {
|
||||
vmOverCommit = true;
|
||||
servers.rspamd = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
nginx = {
|
||||
virtualHosts."${domain}" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "http://127.0.0.1:11334";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
systemd = {
|
||||
services.rspamd-dmarc-report = {
|
||||
description = "rspamd dmarc reporter";
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "${pkgs.rspamd}/bin/rspamadm dmarc_report -v";
|
||||
User = "rspamd";
|
||||
Group = "rspamd";
|
||||
};
|
||||
startAt = "daily";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue