Commit 784d96f8 authored by mku's avatar mku

ZP-436 #comment Issues with appointments on IOS 6.1.3 - no tracking tab in...

ZP-436 #comment  Issues with appointments on IOS 6.1.3 - no tracking tab in webapp for the organizer  #time 45m

git-svn-id: https://z-push.org/svn/z-push/trunk@1715 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent be017c21
...@@ -1240,6 +1240,8 @@ class MAPIProvider { ...@@ -1240,6 +1240,8 @@ class MAPIProvider {
$props[$appointmentprops["sentrepresentingaddt"]] = "ZARAFA"; $props[$appointmentprops["sentrepresentingaddt"]] = "ZARAFA";
$props[$appointmentprops["representingentryid"]] = mapi_createoneoff(Request::GetAuthUser(), "ZARAFA", Request::GetAuthUser()); $props[$appointmentprops["representingentryid"]] = mapi_createoneoff(Request::GetAuthUser(), "ZARAFA", Request::GetAuthUser());
$props[$appointmentprops["sentrepresentinsrchk"]] = $props[$appointmentprops["sentrepresentingaddt"]].":".$props[$appointmentprops["sentrepresentingemail"]]; $props[$appointmentprops["sentrepresentinsrchk"]] = $props[$appointmentprops["sentrepresentingaddt"]].":".$props[$appointmentprops["sentrepresentingemail"]];
// the user is the organizer
$props[$appointmentprops["responsestatus"]] = olResponseOrganized;
} }
// Do attendees // Do attendees
...@@ -1289,7 +1291,10 @@ class MAPIProvider { ...@@ -1289,7 +1291,10 @@ class MAPIProvider {
mapi_message_modifyrecipients($mapimessage, 0, $recips); mapi_message_modifyrecipients($mapimessage, 0, $recips);
$props[$appointmentprops["icon"]] = 1026; $props[$appointmentprops["icon"]] = 1026;
// set these properties to show tracking tab in webapp
$props[$appointmentprops["mrwassent"]] = true; $props[$appointmentprops["mrwassent"]] = true;
$props[$appointmentprops["responsestatus"]] = olResponseOrganized;
$props[$appointmentprops["meetingstatus"]] = olMeeting;
} }
mapi_setprops($mapimessage, $props); mapi_setprops($mapimessage, $props);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment