From 8cab4778f9ecfd1e9297dd8bd9eba40d72493345 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 18:29:38 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- server/notification-providers/smtp.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/notification-providers/smtp.js b/server/notification-providers/smtp.js index 41e518f66..ebb8081bf 100644 --- a/server/notification-providers/smtp.js +++ b/server/notification-providers/smtp.js @@ -26,7 +26,10 @@ class SMTP extends NotificationProvider { } else if (notification.smtpIgnoreSTARTTLS) { // Disable STARTTLS completely for servers that don't support it // Connection will remain unencrypted - log.warn("notification", `SMTP notification using unencrypted connection (STARTTLS disabled) to ${notification.smtpHost}:${notification.smtpPort}`); + log.warn( + "notification", + `SMTP notification using unencrypted connection (STARTTLS disabled) to ${notification.smtpHost}:${notification.smtpPort}` + ); config.ignoreTLS = true; } else { // Allow STARTTLS (default behavior for ports 25, 587)