From 4bc1b31ec9ec3cbfa39be022d84c6479317e8b11 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 6 Jan 2011 03:22:11 +0000 Subject: [PATCH] Monotone-Parent: abbedeb3c6a9b4649d47fc35a90f1a0d3fe244c5 Monotone-Revision: 7f91a2bdc7efcaaa8648a3d05eedf283fb6129ae Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-01-06T03:22:11 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ OpenChange/MAPIStoreFolderTable.m | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2df7c4a48..2aba6c95e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-01-05 Wolfgang Sourdeau + * OpenChange/MAPIStoreFolderTable.m + (-backendIdentifierForProperty:): new overriden method to avoid an + exception under certain circumstances. + * OpenChange/SOGoMAPIFSMessage.m (-MAPISave): make use of "ensureDirectory" on the container folder to avoid errors with NSDictionary failing to save itself to the filesystem. diff --git a/OpenChange/MAPIStoreFolderTable.m b/OpenChange/MAPIStoreFolderTable.m index 5cf265ede..5bcac4e8c 100644 --- a/OpenChange/MAPIStoreFolderTable.m +++ b/OpenChange/MAPIStoreFolderTable.m @@ -126,4 +126,9 @@ static MAPIStoreMapping *mapping; return rc; } +- (NSString *) backendIdentifierForProperty: (enum MAPITAGS) property +{ + return nil; +} + @end