Monotone-Parent: dc04eb7c603c80427d9ac15ee5747b6d6ed6ff48

Monotone-Revision: 8dc4df621d7d3e7b400854df5f4d831bf8e6a62e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-07T17:17:10
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-02-07 17:17:10 +00:00
parent c0974b8f2e
commit 3e5c19bfae
2 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2011-02-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreDraftsContext.m
(-createMessageOfClass:inFolderAtURL:): implemented method to
avoid a crash when "saving" drafts messages in Outlook.
2011-02-07 Ludovic Marcotte <lmarcotte@inverse.ca>
* OpenChange/MAPIStoreDeletedItemsContext.m: now a subclass of

View File

@@ -26,6 +26,7 @@
#import "MAPIStoreMapping.h"
#import <Mailer/SOGoDraftsFolder.h>
#import <Mailer/SOGoMailAccount.h>
#import "MAPIApplication.h"
@@ -82,4 +83,10 @@
}
}
- (id) createMessageOfClass: (NSString *) messageClass
inFolderAtURL: (NSString *) folderURL;
{
return [moduleFolder newDraft];
}
@end