(fix) now set MeetingMessageType only for EAS 14.1

pull/85/head
Ludovic Marcotte 2015-05-12 10:05:45 -04:00
parent f666b436dd
commit ee8caa5a99
2 changed files with 4 additions and 1 deletions

View File

@ -787,7 +787,9 @@ struct GlobalObjectId {
[s appendFormat: @"<GlobalObjId xmlns=\"Email:\">%@</GlobalObjId>", [globalObjId activeSyncRepresentationInContext: context]];
// We set the right message type - we must set AS version to 14.1 for this
[s appendFormat: @"<MeetingMessageType xmlns=\"Email2:\">%d</MeetingMessageType>", 1];
if ([[[context request] headerForKey: @"MS-ASProtocolVersion"] isEqualToString: @"14.1"])
[s appendFormat: @"<MeetingMessageType xmlns=\"Email2:\">%d</MeetingMessageType>", 1];
[s appendString: @"</MeetingRequest>"];
// ContentClass

1
NEWS
View File

@ -46,6 +46,7 @@ Bug fixes
- Outlook clients can use reply all functionality on multidomain environment (Zentyal)
- optional attendes on events are now shown properly (Zentyal)
- fixed the EAS maximum response size being per-folder, and not global
- now set MeetingMessageType only for EAS 14.1
2.2.17a (2015-03-15)
--------------------