Open TCP and UDP port 25 in firewall for mail server
Some checks failed
Build Nix modules (dry-run) / build-modules (push) Failing after 4m1s

This commit is contained in:
Root User 2026-02-16 02:32:52 +01:00
parent f7c2b2d75a
commit 5d2f866a57
Signed by: root
GPG key ID: 087F0A95E5766D72

View file

@ -154,5 +154,12 @@ in {
}; };
}; };
}; };
networking.firewall.allowedTCPPorts = [
25
];
networking.firewall.allowedUDPPorts = [
25
];
}; };
} }