🐛 SMTP secure default value (#272)

Co-authored-by: Monta <monta@HP-ProBook-445-14-inch-G9-Notebook-PC-505aadfc.localdomain>
This commit is contained in:
Montassar Ghanmy
2023-11-23 11:03:15 +01:00
committed by GitHub
parent b075763445
commit 12a99ba422
@@ -44,6 +44,7 @@ export default class EmailPusherClass
host: this.configuration.get<string>("smtp_host", ""),
port: this.configuration.get<number>("smtp_port", 25),
requireTLS: this.configuration.get<boolean>("smtp_tls", false),
secure: this.configuration.get<boolean>("smtp_tls", false),
auth: {
user: this.configuration.get<string>("smtp_user", ""),
pass: this.configuration.get<string>("smtp_password", ""),