Monotone-Parent: 2e84cd33211e690f4a1d23f18f557220df113d36

Monotone-Revision: a62274e4f237a8d859323dac4cb26008cc301b18

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-10-23T17:37:21
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2008-10-23 17:37:21 +00:00
parent a6b4207510
commit 1be3bd22c1
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,10 @@
2008-10-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* 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.

View File

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