From 308c661f90b2b37a19b14b22cfb8eaeda0ec6efe Mon Sep 17 00:00:00 2001 From: Thary Date: Fri, 12 Sep 2025 23:36:48 +0300 Subject: [PATCH] test --- module.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/module.nix b/module.nix index 7c0d025..04954e9 100644 --- a/module.nix +++ b/module.nix @@ -75,11 +75,19 @@ in smtp = { createLocally = false; - user = "noreply.mastodon@${sp.domain}"; + # user = "noreply.mastodon@${sp.domain}"; fromAddress = "noreply.mastodon@${sp.domain}"; + user = "noreply.mastodon"; + host = "127.0.0.1"; + port = 25; passwordFile = "/run/keys/mastodon/email_password"; authenticate = true; }; + extraConfig = { + "SMTP_ENABLE_STARTTLS_AUTO" = false; + "SMTP_TLS" = false; + "SMTP_SSL" = false; + }; }; # services.postfix.config = {