niksos/hosts/chmura/stalwart.nix
2023-10-13 21:04:24 +02:00

30 lines
772 B
Nix

_: {
services.stalwart-mail = {
enable = true;
settings = {
server = {
hostname = "mail.jacekpoz.pl";
run-as = {
user = "stalwart";
group = "stalwart";
};
listener = {
smtp = {
bind = [ "0.0.0.0:9900" ];
};
};
};
global = {
thread-pool = 4;
shared-map = {
shard = 32;
capacity = 10;
};
tracing = {
method = "journal";
level = "warn";
};
};
};
};
}