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];