From b0757634459506535761b0d839f3d6e8ca111ebc Mon Sep 17 00:00:00 2001 From: Montassar Ghanmy Date: Thu, 23 Nov 2023 10:42:19 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=89=EF=B8=8F=20SMTP=20TLS=20default=20val?= =?UTF-8?q?ue=20(#270)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../node/src/core/platform/services/email-pusher/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 71b28e62..bdef6860 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 @@ -43,7 +43,7 @@ export default class EmailPusherClass const smtpConfig: SMTPClientConfigType = { host: this.configuration.get("smtp_host", ""), port: this.configuration.get("smtp_port", 25), - requireTLS: this.configuration.get("smtp_tls", true), + requireTLS: this.configuration.get("smtp_tls", false), auth: { user: this.configuration.get("smtp_user", ""), pass: this.configuration.get("smtp_password", ""),