From 89ec4b2824de6edcfbee869559e303e7acbee8ec Mon Sep 17 00:00:00 2001 From: RemMai Date: Thu, 2 Apr 2026 15:18:40 +0800 Subject: [PATCH] fix: Fix the issue where CloudMail cannot save due to incorrect key settings --- static/js/email_services.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/email_services.js b/static/js/email_services.js index 0cd23ceb..1f9b0f1d 100644 --- a/static/js/email_services.js +++ b/static/js/email_services.js @@ -585,7 +585,7 @@ async function handleAddCustom(e) { domain: formData.get('fm_domain') }; } else if (subType === 'cloudmail') { - serviceType = 'cloud_mail'; + serviceType = 'cloudmail'; const domainInput = formData.get('cm_domain'); let domain = domainInput; if (domainInput && domainInput.includes(',')) {