base/postfix: remove, base:nullmailer: init

This commit is contained in:
h7x4
2026-07-21 20:11:28 +09:00
parent 9a837d210d
commit 361a23f4d3
4 changed files with 17 additions and 32 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, ... }:
{
services.nullmailer = {
enable = true;
config = {
adminaddr = "root@pvv.ntnu.no";
defaultdomain = "pvv.ntnu.no";
defaulthost = "pvv.ntnu.no";
me = lib.mkDefault config.networking.fqdn;
remotes = lib.mkDefault "smtp.pvv.ntnu.no smtp port=587 starttls";
};
};
}