mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-22 05:19:28 +00:00
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:
@@ -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
|
||||
|
||||
@@ -37,7 +37,9 @@
|
||||
@interface MAPIStoreDraftsContext : MAPIStoreMailContext
|
||||
@end
|
||||
|
||||
@interface MAPIStoreDeletedItemsContext : MAPIStoreMailContext
|
||||
#import "MAPIStoreFSBaseContext.h"
|
||||
|
||||
@interface MAPIStoreDeletedItemsContext : MAPIStoreFSBaseContext
|
||||
@end
|
||||
|
||||
@interface MAPIStoreOutboxContext : MAPIStoreMailContext
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user