iMIP - RFC 6047

This document is still incomplete. It requires many more examples of what iMIP messages look like in different contexts.

iMIP describe HOW iTIP messages are sent and received via email.

iMIP is important to solve the “identity crisis” as it’s called within calendaring. Many people have their calendar hosted on one service, but their email address hosted somewhere else. The ATTENDEE and ORGANIZER components of an iCalendar scheduling resource are generally mailto: URIs, and are created by people adding addresses from their address book.

The most interoperable way to ensure that an iTIP request reaches the owner of an email address is to attach it to an email and send it to that address.

description

An iMIP message is an email containing attached scheduling iTIP files. Each iTIP is an iCalendar format file with a METHOD property.

We will ignore COUNTER and DECLINECOUNTER for this document, as they are poorly supported and not recommended. Likewise REFRESH is not often seen in the wild.

PUBLISH and ADD are used for events with an ORGANIZER but no explicit list of ATTENDEEs. These are for publishing events, but have no facility to track who is coming.

Which leaves us with REQUEST and REPLY, as well as CANCEL which is used for both published and requested events when the ORGANIZER is cancelling the event.

REQUEST and CANCEL iMIP email messages are always sent from the ORGANIZER to ATTENDEEs, and REPLY is always from an ATTENDEE back to the ORGANIZER.

best practices

Email messages may have more than a single iCalendar file attached, particular in the case of PUBLISH/REFRESH/ADD where a calendar file is being broadcast. As a processor of iMIP messages you may care about these things, but as a generator the best practice is to only attach a single iMIP file to each email.

The recommended structure the email is as follows:

  • multipart/mixed
    • multipart/alternative
      • text/plain
      • text/html
      • text/calendar; method=REQUEST
    • application/ics (with a content-disposition:attachment) BASE64

This structure is based on interoperability testing with various existing implementations. Some clients will only see the part with the standard text/calendar content-type and the method header. Other clients are only able to attached parts with application/ics (which is non-standard)

It is also recommended that the filename of the application/ics part end with .ics.

Some vendors add links within the HTML part which can be used from non-calendaring-aware email clients to accept or decline a request without having to process the calendar parts at all. The server just updates the ORGANIZER’s copy of the event based on the link clicked.

An example of the whole RFC message is provided on GitHub.

One useful practice is to set the ORGANIZER address to a per-event or per-calendar agent email address rather than the personal address of a human, while still adding the personal address of the ORGANIZER as one of the ATTENDEEs. Particularly with a per-event address which is not easily guessable, the server can do more automated processing of incoming replies.

automatic handling of incoming iMIP messages

To avoid spam automatically being added to calendars, it is recommended to provide some upfront checking of emails before blindly processing the attached calendar parts, for example checking if the sender email is in the recipient’s address book or if the UID of an incoming REPLY or REQUEST is already in the user’s calendar, implying that they created or have already accepted this event.

Gotchas and things to be aware of

If you’re writing a client which is talking CalDAV to a server there isn’t much to think about other than the being aware that if there is a SCHEDULE-AGENT attribute on your ATTENDEE and it’s not “SERVER” then the server won’t send out iMIP messages on your behalf.

You also need to read enough of RFC6638 to know how you are legally allowed to modify a scheduling resource if you are not the ORGANIZER. Section 2.4.1 defines the CALDAV:calendar-user-address-set, which is the addresses which are “you” for the purpose of scheduling. Generally it’s a set of one address, and most clients seem to only look for one. So just use one!

As an ATTENDEE, you can modify your own ATTENDEE property within the VEVENT and the server will send an iMIP REPLY to the ORGANIZER to update the master copy of the event. Deleting your copy of the VEVENT will cause the server to send a REPLY with PARTSTAT=DECLINED, the same as declining the request.

As a server author, things are much more complex. Not only do you have to determine which attendee the client is when processing an update to a scheduling VEVENT via CalDAV, you then need to calculate the correct iMIP message to send.

In particular, Section 3.2.6 ‘Restrict Recurrence Instances Sent to “Attendees”’ means that the VEVENT will have to be rewritten depending on which attendee the iMIP message is being sent to. It is easiest by far to send a separate email to each ATTENDEE.

One of the most complex cases to handle, both as a sender and as a recipient of iMIP, is the case where an ATTENDEE is invited to only a single recurrence or (even more complex) to multiple single recurrences of a repeating event, but is not invited to the entire event. In this case the ATTENDEE receives one or more VEVENTS with both a UID and a RECURRENCE-ID, but no VEVENT with just the UID. Handling these “naked” recurrences is a frequent source of bugs in implementations.

No negotiation

iMIP via email provides no return channel other than sending a new iMIP back, so there’s no protocol negotiation. All VEVENTs need to be lowest common denominator VERSION:2.0 ICALENDAR files complete with VTIMEZONEs for all mentioned timezone names.

Was this page helpful for you? Please give us Feedback.