Is there a way for me to send a custom property to ALL the participants in an event?
Hi, Is there a way for me to send a custom property to ALL the participants in an event? Following iCal object is not delivered to the attendee (user1). This event was created by user2. BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN PRODID:"-//NONSGML HandCal//EN BEGIN:VEVENT UID:0a548a2e-0d54-4ad8-a245-4f7329b6b4b9 DTSTART:20151112T220000Z DTEND:20151112T230000Z ATTENDEE;CN=Ios;CUTYPE=INDIVIDUAL;EMAIL=user1@abc.com;PARTS TAT=NEEDS-ACTION;ROLE=REQ-PARTICIPANT;RSVP=TRUE;SCHEDULE-STATUS=1.2:urn:x -uid:user1 ATTENDEE;CN=G J;CUTYPE=INDIVIDUAL;EMAIL=user2@abc.com;PARTS TAT=ACCEPTED;ROLE=REQ-PARTICIPANT;RSVP=TRUE:urn:x-uid:user2 CREATED:20151111T202418Z DTSTAMP:20151111T202418Z ORGANIZER;CN=G J;EMAIL=user2@abc.com;ROLE=CHAIR:urn:x-uid:user2 SUMMARY:sham TZID:America/Los_Angeles X-CUSTOM-TEST:CUSTOM DATA END:VEVENT END:VCALENDAR
Hi Gaurav, --On November 11, 2015 at 12:32:20 PM -0800 Gaurav Jain <monkeyfdude@gmail.com> wrote:
Is there a way for me to send a custom property to ALL the participants in an event?
Following iCal object is not delivered to the attendee (user1).
This event was created by user2.
By default the server does not propagate any X- properties from organizer to attendee or vice versa. However, there is a whitelist in the server config that allows you to change that. Merge the following item into your config to have the X-CUSTOM-TEST property sent to attendees: <key>Scheduling</key> <dict> <key>CalDAV</key> <dict> <key>OrganizerPublicProperties</key> <array> <string>X-APPLE-DROPBOX</string> <string>X-APPLE-STRUCTURED-LOCATION</string> <string>X-CUSTOM-TEST</string> </array> </dict> </dict> Note that as things currently stand attendees can't modify that property or can't add their own to send back to the organizer. -- Cyrus Daboo
*thank you so very much* On Thu, Nov 12, 2015 at 9:26 AM, Cyrus Daboo <cdaboo@apple.com> wrote:
Hi Gaurav,
--On November 11, 2015 at 12:32:20 PM -0800 Gaurav Jain < monkeyfdude@gmail.com> wrote:
Is there a way for me to send a custom property to ALL the participants in
an event?
Following iCal object is not delivered to the attendee (user1).
This event was created by user2.
By default the server does not propagate any X- properties from organizer to attendee or vice versa. However, there is a whitelist in the server config that allows you to change that. Merge the following item into your config to have the X-CUSTOM-TEST property sent to attendees:
<key>Scheduling</key> <dict> <key>CalDAV</key> <dict> <key>OrganizerPublicProperties</key> <array> <string>X-APPLE-DROPBOX</string>
<string>X-APPLE-STRUCTURED-LOCATION</string> <string>X-CUSTOM-TEST</string> </array> </dict> </dict>
Note that as things currently stand attendees can't modify that property or can't add their own to send back to the organizer.
-- Cyrus Daboo
participants (2)
-
Cyrus Daboo
-
Gaurav Jain