feat: added smtp to firefly-iii

This commit is contained in:
Nick 2025-10-20 22:05:16 -05:00
parent 0c063e0308
commit 5067ddbc95

View file

@ -26,13 +26,13 @@ in
APP_URL = "https://${host}";
APP_KEY_FILE = config.sops.secrets."${service.name}-pass".path;
DB_PASSWORD_FILE = config.sops.secrets."${service.name}-data".path;
MAIL_MAILER = "log";
MAIL_HOST = smtp.hostname;
MAIL_PORT = 2525;
MAIL_FROM = service.email.address0;
MAIL_USERNAME = service.email.address0;
MAIL_PASSWORD = config.sops.secrets."${service.name}-smtp".path;
MAIL_ENCRYPTION = null;
# MAIL_MAILER = "smtp";
# MAIL_HOST = smtp.hostname;
# MAIL_PORT = 2525;
# MAIL_FROM = service.email.address0;
# MAIL_USERNAME = service.email.address0;
# MAIL_PASSWORD = ""; # if you ever need to use smtp, you have to hardcode your smtp password here
# MAIL_ENCRYPTION = "tls";
SITE_OWNER = email.address2;
};
};