Monotone-Parent: f1785f649f5c8ff93247eff842a747a810f90e1c

Monotone-Revision: c586ecab910c391dd7676a0406b4511602a80b3e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-08T19:57:49
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-07-08 19:57:49 +00:00
parent 179774e177
commit 277ed04099
3 changed files with 16 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
2011-07-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreMailContext.m: MAPIStoreDeletedItemsContext
is now temporarily a fs-based context.
* SoObjects/Mailer/SOGoMailFolder.m
(_fetchMessageProperties:matchingQualifier:andSortOrderings::):
properly implement this method, as properties should be an array

View File

@@ -37,7 +37,9 @@
@interface MAPIStoreDraftsContext : MAPIStoreMailContext
@end
@interface MAPIStoreDeletedItemsContext : MAPIStoreMailContext
#import "MAPIStoreFSBaseContext.h"
@interface MAPIStoreDeletedItemsContext : MAPIStoreFSBaseContext
@end
@interface MAPIStoreOutboxContext : MAPIStoreMailContext

View File

@@ -84,20 +84,27 @@
@end
#import "MAPIStoreFSFolder.h"
@implementation MAPIStoreDeletedItemsContext
+ (NSString *) MAPIModuleName
{
return @"deleted-items";
}
- (void) setupBaseFolder: (NSURL *) newURL
{
baseFolder = [MAPIStoreDeletedItemsFolder baseFolderWithURL: newURL
inContext: self];
baseFolder = [MAPIStoreFSFolder baseFolderWithURL: newURL inContext: self];
[baseFolder retain];
}
// - (void) setupBaseFolder: (NSURL *) newURL
// {
// baseFolder = [MAPIStoreDeletedItemsFolder baseFolderWithURL: newURL
// inContext: self];
// [baseFolder retain];
// }
@end
@implementation MAPIStoreOutboxContext