From 788ece452b80a0270169178d5e596972797d0906 Mon Sep 17 00:00:00 2001 From: Hivert Quentin Date: Tue, 1 Apr 2025 10:05:26 +0200 Subject: [PATCH] fix(smtp): fix string type --- SoObjects/SOGo/SOGoMailer.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/SOGo/SOGoMailer.m b/SoObjects/SOGo/SOGoMailer.m index 73f9aa25e..021d4faa2 100644 --- a/SoObjects/SOGo/SOGoMailer.m +++ b/SoObjects/SOGo/SOGoMailer.m @@ -325,7 +325,7 @@ { login = [currentAcount objectForKey: @"userName"]; password = [currentAcount objectForKey: @"password"]; - smtpAuthMethod = "plain"; //Only support plain for auxiliary account + smtpAuthMethod = @"plain"; //Only support plain for auxiliary account } else {