From 425825658cec75c22de2fba400aee7d414512c8f Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 24 Nov 2010 19:28:40 +0000 Subject: [PATCH] Monotone-Parent: abeb2632c1c7861f4a6e16c4dcf123b4b0925bfc Monotone-Revision: 88dbd2a21bc32921ce7ccfe80336f902eb022b0e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-11-24T19:28:40 Monotone-Branch: ca.inverse.sogo --- OpenChange/MAPIStoreTypes.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/OpenChange/MAPIStoreTypes.m b/OpenChange/MAPIStoreTypes.m index 1e5161746..af786b878 100644 --- a/OpenChange/MAPIStoreTypes.m +++ b/OpenChange/MAPIStoreTypes.m @@ -122,7 +122,6 @@ NSObjectFromSPropValue (const struct SPropValue *value) // #define PT_SVREID 0xFB // #define PT_SRESTRICT 0xFD // #define PT_ACTIONS 0xFE -// #define PT_BINARY 0x102 result = [NSNull null]; NSLog (@"object type not handled: %d (0x.4x)", valueType, valueType); } @@ -143,6 +142,11 @@ MAPIStoreDumpMessageProperties (NSDictionary *properties) max = [allKeys count]; NSLog (@"message properties (%d):", max); + + value = [properties objectForKey: @"recipients"]; + if (value) + NSLog (@" recipients: %@", value); + for (count = 0; count < max; count++) { key = [allKeys objectAtIndex: count];