Monotone-Parent: be29419e109fd11f042493b967f5ccb451daec73

Monotone-Revision: 5230458dba570c663e9087a99852e38cfb26de0f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-11-01T14:05:11
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-11-01 14:05:11 +00:00
parent 087995bfe2
commit 77fce4d4da
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-11-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailBaseObject.m (-_createIMAP4Connection):
we need to initialize newConnection to nil when the return
password is nil.
2010-10-28 Francis Lachapelle <flachapelle@inverse.ca>
* SoObjects/Mailer/SOGoDraftObject.m

View File

@ -140,6 +140,9 @@ static BOOL debugOn = YES;
password: password];
}
}
else
newConnection = nil;
if (!newConnection)
{
newConnection = (NGImap4Connection *) [NSNull null];