feat: smtp test

This commit is contained in:
Nick 2025-02-02 21:16:28 -06:00
parent 468ecc909a
commit 2ede55a7ee
4 changed files with 14 additions and 24 deletions

View file

@ -11,6 +11,7 @@ let
inherit (flake.config.services.instances)
caddy
peertube
smtp
web
;
service = peertube;
@ -55,8 +56,8 @@ in
transport = "smtp";
disable_starttls = false;
from_address = service.email.address0;
hostname = "smtp.protonmail.ch";
port = 587;
hostname = smtp.hostname;
port = smtp.ports.port0;
username = service.email.address0;
tls = false;
};