+2007-08-09 Wolfgang Sourdeau <WSourdeau@Inverse.CA>
+
+ * NGMail: fixed some connection states in NGSmtpClient (OGo bug #1897)
+ (v4.7.250)
+
2007-07-15 Helge Hess <helge.hess@opengroupware.org>
* NGImap4: fixed an encoding issue on gstep-base/Cocoa (OGo bug #1885)
+2007-08-09 Wolfgang Sourdeau <WSourdeau@Inverse.CA>
+
+ * NGSmtpClient.m: properly change connection states (fixes OGo bug
+ #1897)
+
2005-12-13 Helge Hess <helge.hess@opengroupware.org>
* NGMimeMessageParser.m: moved NSData QP category to own file
/*
- Copyright (C) 2000-2005 SKYRIX Software AG
+ Copyright (C) 2000-2007 SKYRIX Software AG
This file is part of SOPE.
NSLog(@"SMTP(MAIL FROM): expected reply code %i, got code %i ..",
NGSmtpActionCompleted, [reply code]);
}
+ [self gotoState:NGSmtpState_TRANSACTION];
return YES;
}
return NO;
reply = [self receiveReply];
if (self->isDebuggingEnabled) [NGTextErr writeFormat:@"S: %@\n", reply];
if ([reply isPositive]) {
+ [self gotoState:NGSmtpState_connected];
return YES;
}
else {