Monotone-Parent: 81dcdd47102e86aa7051a10cbd7a7183b374d07a

Monotone-Revision: dcee22693d3a16ba20dcd9824bd2cfd39c0cf369

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-12-17T19:39:21
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-12-17 19:39:21 +00:00
parent 73fc99df9d
commit 7d9b3a97b3
11 changed files with 243 additions and 119 deletions

View File

@@ -241,6 +241,9 @@
else
rc = MAPIRestrictionStateAlwaysFalse;
break;
case 0x81930003: /* PidLidBusyStatus (named prop) */
rc = MAPIRestrictionStateAlwaysTrue; // should be based on c_isopaque
break;
default:
rc = [super evaluatePropertyRestriction: res intoQualifier: qualifier];
}
@@ -255,6 +258,18 @@
if (!knownProperties)
{
knownProperties = [NSMutableDictionary new];
// [knownProperties setObject: @"c_startdate"
// forKey: MAPIPropertyKey (PidLidAppointmentStartWhole)];
[knownProperties setObject: @"c_startdate"
forKey: MAPIPropertyKey (0x818f0040)];
// [knownProperties setObject: @"c_enddate"
// forKey: MAPIPropertyKey (PidLidAppointmentEndWhole)];
[knownProperties setObject: @"c_enddate"
forKey: MAPIPropertyKey (0x818a0040)];
// [knownProperties setObject: @"c_iscycle"
// forKey: MAPIPropertyKey (PidLidRecurring)];
[knownProperties setObject: @"c_iscycle"
forKey: MAPIPropertyKey (0x81e70040)];
}
return [knownProperties objectForKey: MAPIPropertyKey (property)];