see changelog

Monotone-Parent: 712040e55618bec7c04be7fc95173aadc966c25b
Monotone-Revision: 7e8193075678dc0552c70be8e294ff1b3ce46b40

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2007-02-08T21:55:47
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2007-02-08 21:55:47 +00:00
parent e9dcf1ea2d
commit 505d9621d3
2 changed files with 10 additions and 4 deletions
+6
View File
@@ -1,3 +1,9 @@
2007-02-08 Ludovic Marcotte <ludovic@inverse.ca>
* SoObjects/Mailer/SOGoMailFolder.m
Priorize the look of folders before doing
the one on messages.
2007-02-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/NSArray+Utilities.m: added an implementation of
+4 -4
View File
@@ -294,15 +294,15 @@ static BOOL useAltNamespace = NO;
*/
return [self lookupImap4Message:_key inContext:_ctx];
}
obj = [self lookupImap4Folder:_key inContext:_ctx];
if (obj != nil)
return obj;
/* check attributes directly bound to the app */
if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))
return obj;
obj = [self lookupImap4Folder:_key inContext:_ctx];
if (obj != nil)
return obj;
/* return 404 to stop acquisition */
return _acquire
? [NSException exceptionWithHTTPStatus:404 /* Not Found */]