]> err.no Git - sope/commitdiff
minor improvement on error processing
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 8 Oct 2004 14:45:55 +0000 (14:45 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 8 Oct 2004 14:45:55 +0000 (14:45 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@235 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-mime/ChangeLog
sope-mime/NGImap4/ChangeLog
sope-mime/NGImap4/NGImap4ResponseParser.m
sope-mime/Version

index e1a7cc3b24a77124acb555f465b0f194d68744ea..5b338749ced65f8269ae2c5c58caabd6c2fbb4a8 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-08  Helge Hess  <helge.hess@opengroupware.org>
+
+       * NGImap4: minor improvement in an error condition (v4.3.189)
+
 2004-10-06  Helge Hess  <helge.hess@skyrix.com>
 
        * NGMime: added special case for +0530 timezone (v4.3.188)
index bdb6e3b5e4f9e5f42ef3f57e1fc8c7f37d723f04..63d317deb968ec55b77c5602adf57e88f422e6db 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-08  Helge Hess  <helge.hess@opengroupware.org>
+
+       * NGImap4ResponseParser.m: added INTERNALDATE as a known, but
+         unsupported fetch key (v4.3.189)
+
 2004-10-04  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * NGImap4.xcode: added new files to Xcode build
index 5c90312a0233b60b5d63a80cba8715ae1b63e5fb..d07fdc610282e4f4abb79533d68b347ecdbfde34 100644 (file)
@@ -1281,7 +1281,16 @@ static BOOL _parseThreadResponse(NGImap4ResponseParser *self,
       NSException *e;
       
       e = [[NGImap4ParserException alloc] 
-           initWithFormat:@"bodystructure not yet supported!"];
+           initWithFormat:@"bodystructure fetch result not yet supported!"];
+      [self setLastException:[e autorelease]];
+      return NO;
+    }
+    else if ([key isEqualToString:@"internaldate"]) {
+      // TODO: implement!
+      NSException *e;
+      
+      e = [[NGImap4ParserException alloc] 
+           initWithFormat:@"INTERNALDATE fetch result not yet supported!"];
       [self setLastException:[e autorelease]];
       return NO;
     }
index b32a6bb3340701c565b06a015c5044598e43efeb..1c4ffc5e02d5e746e5e0ad339a2b4c56acd53376 100644 (file)
@@ -2,6 +2,6 @@
 
 MAJOR_VERSION:=4
 MINOR_VERSION:=3
-SUBMINOR_VERSION:=188
+SUBMINOR_VERSION:=189
 
 # v4.2.149 requires libNGStreams v4.2.34