Shift the noreply email to nixfox

This commit is contained in:
Jimbo 2025-01-02 10:13:00 -05:00
parent 1bb7bb27bf
commit ef2ee5fb07
7 changed files with 12 additions and 20 deletions

View file

@ -10,8 +10,8 @@
host = "mx.${config.domains.p1}";
port = 587;
authenticate = true;
fromAddress = "Jimbo's Mastodon <noreply@${config.domains.p1}>";
user = "noreply@${config.domains.p1}";
fromAddress = "NixFox Mastodon <noreply@${config.domains.p2}>";
user = "noreply@${config.domains.p2}";
passwordFile = pkgs.writeText "smtp_pass.txt" config.secrets.noreplyPassword;
};
};

View file

@ -29,9 +29,9 @@
];
email = {
notif_from = "NixFox Matrix <noreply@${config.domains.p1}>";
notif_from = "NixFox Matrix <noreply@${config.domains.p2}>";
smtp_host = "mx.${config.domains.p1}";
smtp_user = "noreply@${config.domains.p1}";
smtp_user = "noreply@${config.domains.p2}";
smtp_pass = config.secrets.noreplyPassword;
enable_tls = true;
smtp_port = 587;