From 60a18309e2ec1ecacaa374950baf4bf9281a37c0 Mon Sep 17 00:00:00 2001 From: vfaergestad <49147564+vfaergestad@users.noreply.github.com> Date: Thu, 17 Apr 2025 16:53:25 +0200 Subject: [PATCH] fix(notifications): sending test-notifications for email now respects the allowSelfSigned value (#4112) --- 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 38d0ee2e9..bae0662fb 100644 --- a/src/components/Settings/Notifications/NotificationsEmail.tsx +++ b/src/components/Settings/Notifications/NotificationsEmail.tsx @@ -204,6 +204,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,