From b8425d6388003322edd7b4b2473aeb24c06e4802 Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <31414959+0xSysR3ll@users.noreply.github.com> Date: Thu, 13 Mar 2025 12:52:30 +0100 Subject: [PATCH] fix(smtp-notification-test): missing allowSelfSigned option in test function (#1461) * fix(smtp-notification-test): missing allowSelfSigned option in test function * fix: indent error --- src/components/Settings/Notifications/NotificationsEmail.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Settings/Notifications/NotificationsEmail.tsx b/src/components/Settings/Notifications/NotificationsEmail.tsx index ac3853ddc..a2431be02 100644 --- a/src/components/Settings/Notifications/NotificationsEmail.tsx +++ b/src/components/Settings/Notifications/NotificationsEmail.tsx @@ -221,6 +221,7 @@ const NotificationsEmail = () => { requireTls: values.encryption === 'opportunistic', authUser: values.authUser, authPass: values.authPass, + allowSelfSigned: values.allowSelfSigned, senderName: values.senderName, pgpPrivateKey: values.pgpPrivateKey, pgpPassword: values.pgpPassword,