Update isso configuration to disable SMTP notifications and comment out SMTP settings

This commit is contained in:
Danilo Reyes
2025-12-25 21:24:05 -06:00
parent 4c924f6bb4
commit 54609e54bb

View File

@@ -29,19 +29,19 @@ in
general = {
host = "https://blog.${cfg.domain}";
max-age = "1h";
notify = "smtp";
notify = "none";
reply-notifications = true;
gravatar = true;
};
smtp = {
host = "smtp.gmail.com";
port = 587;
security = "starttls";
username = "$ISSO_SMTP_USERNAME";
password = "$ISSO_SMTP_PASSWORD";
to = config.my.email;
from = config.my.smtpemail;
};
# smtp = {
# host = "smtp.gmail.com";
# port = 587;
# security = "starttls";
# username = "$ISSO_SMTP_USERNAME";
# password = "$ISSO_SMTP_PASSWORD";
# to = config.my.email;
# from = config.my.smtpemail;
# };
};
};
systemd.services.isso = {