feat: add option to disable TLS for email sending

This commit is contained in:
Elias Schneider
2024-11-28 12:13:23 +01:00
parent 7d6b1d19e9
commit f9fa2c6706
6 changed files with 23 additions and 4 deletions

View File

@@ -95,6 +95,11 @@ var defaultDbConfig = model.AppConfig{
Key: "smtpPassword",
Type: "string",
},
SmtpTls: model.AppConfigVariable{
Key: "smtpTls",
Type: "bool",
DefaultValue: "true",
},
SmtpSkipCertVerify: model.AppConfigVariable{
Key: "smtpSkipCertVerify",
Type: "bool",