feat: refactored and updated smtp config

This commit is contained in:
Nick 2025-10-22 16:48:50 -05:00
parent 1b98c4eff8
commit c469f48b4e
18 changed files with 79 additions and 105 deletions

View file

@ -53,12 +53,12 @@ in
level = "debug";
};
smtp = {
transport = "smtp";
transport = smtp.name;
disable_starttls = false;
from_address = service.email.address0;
from_address = service.email.address1;
hostname = smtp.hostname;
port = smtp.ports.port0;
username = service.email.address0;
port = smtp.ports.port1;
username = smtp.email.address1;
tls = false;
};
};
@ -107,11 +107,11 @@ in
value = sopsPath secret;
})
[
"smtp"
"database"
"redis"
"root"
"secret"
"smtp"
]
);
};