From 12a99ba42291eb480cec3ad3a7aa8c742eacf7c2 Mon Sep 17 00:00:00 2001 From: Montassar Ghanmy Date: Thu, 23 Nov 2023 11:03:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20SMTP=20secure=20default=20value?= =?UTF-8?q?=20(#272)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Monta --- .../node/src/core/platform/services/email-pusher/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts b/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts index bdef6860..3900ad4b 100644 --- a/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts +++ b/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts @@ -44,6 +44,7 @@ export default class EmailPusherClass host: this.configuration.get("smtp_host", ""), port: this.configuration.get("smtp_port", 25), requireTLS: this.configuration.get("smtp_tls", false), + secure: this.configuration.get("smtp_tls", false), auth: { user: this.configuration.get("smtp_user", ""), pass: this.configuration.get("smtp_password", ""),