From 1be3bd22c114d87d1d2ed9cdcab2ffe586f123e4 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 23 Oct 2008 17:37:21 +0000 Subject: [PATCH] Monotone-Parent: 2e84cd33211e690f4a1d23f18f557220df113d36 Monotone-Revision: a62274e4f237a8d859323dac4cb26008cc301b18 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-10-23T17:37:21 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/SOGo/SOGoMailer.m | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00213d828..51f029414 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2008-10-23 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoMailer.m ([SOGoMailer + -sendMailData:datatoRecipients:recipientssender:sender]): don't + HELO the server after connecting, since the connectToHost: method + already has "EHLO"'d it after the connection was established. + * UI/MailerUI/UIxMailMainFrame.m ([-quotaSupport]): removed useless method. diff --git a/SoObjects/SOGo/SOGoMailer.m b/SoObjects/SOGo/SOGoMailer.m index a017118f2..6f6264424 100644 --- a/SoObjects/SOGo/SOGoMailer.m +++ b/SoObjects/SOGo/SOGoMailer.m @@ -155,8 +155,7 @@ client = [NGSmtpClient smtpClient]; if ([client connectToHost: smtpServer]) { - if ([client hello] - && [client mailFrom: sender]) + if ([client mailFrom: sender]) { toErrors = 0; addresses = [recipients objectEnumerator];