From 1fcc2c555ad17d88d9f61ee24b794aa918bff92f Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 9 Nov 2011 14:58:17 +0000 Subject: [PATCH] Monotone-Parent: e836d3ba228988acc21e87b16faa064ac0c357e4 Monotone-Revision: 8433690e83501187848cc751a754f1f1fdf2d8c5 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-11-09T14:58:17 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ OpenChange/MAPIStoreVolatileMessage.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f40765c88..227bb6a70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-11-09 Wolfgang Sourdeau + * OpenChange/MAPIStoreVolatileMessage.m (-addProperties:): + transfer the content of the "properties" ivar instead of the + "newProperties" parameter, so as to benefit from treatment that + could have happened in parent classes. + * OpenChange/MAPIStoreMailVolatileMessage.m (_generateMailDataWithBcc:): don't write the resulting mail body to /tmp/mimegen.eml. diff --git a/OpenChange/MAPIStoreVolatileMessage.m b/OpenChange/MAPIStoreVolatileMessage.m index 1f9286bca..56bfe6984 100644 --- a/OpenChange/MAPIStoreVolatileMessage.m +++ b/OpenChange/MAPIStoreVolatileMessage.m @@ -83,7 +83,7 @@ Class NSNumberK; - (void) addProperties: (NSDictionary *) newProperties { [super addProperties: newProperties]; - [sogoObject appendProperties: newProperties]; + [sogoObject appendProperties: properties]; [properties removeAllObjects]; ASSIGN (lastModificationTime, [NSDate date]); }