From 53db0a5de4e5bc2a5d4721d9199b1a92ecbe8710 Mon Sep 17 00:00:00 2001 From: rustmailer Date: Wed, 13 Aug 2025 10:44:53 +0800 Subject: [PATCH] fix(ui): change default option value --- web/src/features/accounts/components/action-dialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/features/accounts/components/action-dialog.tsx b/web/src/features/accounts/components/action-dialog.tsx index 075dbb0..2d94b9c 100644 --- a/web/src/features/accounts/components/action-dialog.tsx +++ b/web/src/features/accounts/components/action-dialog.tsx @@ -187,7 +187,7 @@ const defaultValues: Account = { imap: { host: "", port: 993, - encryption: 'StartTls', + encryption: 'Ssl', auth: { auth_type: 'Password', password: undefined, @@ -197,7 +197,7 @@ const defaultValues: Account = { smtp: { host: "", port: 465, - encryption: 'StartTls', + encryption: 'Ssl', auth: { auth_type: 'Password', password: undefined,