<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../../rfc2629.xslt"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd'
[
<!ENTITY rfc2119 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml'>
<!ENTITY rfc2397 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2397.xml'>
<!ENTITY rfc3261 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3261.xml'>
<!ENTITY rfc3966 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3966.xml'>
<!ENTITY rfc4122 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4122.xml'>
<!ENTITY rfc5122 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5122.xml'>
<!ENTITY rfc5234 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml'>
<!ENTITY rfc5545 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5545.xml'>
<!ENTITY rfc5546 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5546.xml'>
<!ENTITY rfc7230 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7230.xml'>
<!ENTITY W3C.REC-css3-color-20110607 PUBLIC '' 'http://xml2rfc.ietf.org/public/rfc/bibxml4/reference.W3C.REC-css3-color-20110607.xml'>
]>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc toc="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc tocdepth="2"?>
<?rfc strict="yes"?>
<rfc category="std" ipr='trust200902' docName='draft-ietf-calext-extensions-05' updates="5545">
  <front>
    <title abbrev="iCalendar Property Extensions">New Properties for iCalendar</title>
    <author initials="C." surname="Daboo" fullname="Cyrus Daboo">
      <organization abbrev="Apple Inc.">Apple Inc.</organization>
      <address>
        <postal>
          <street>1 Infinite Loop</street>
          <city>Cupertino</city>
          <region>CA</region>
          <code>95014</code>
          <country>USA</country>
        </postal>
        <email>cyrus@daboo.name</email>
        <uri>http://www.apple.com/</uri>
      </address>
    </author>
    <date />
    <area>Applications</area>
    <keyword>alarms</keyword>
    <keyword>calendaring</keyword>
    <keyword>iCalendar</keyword>
    <abstract>
      <t>This document defines a set of new properties for iCalendar data as well as extending the use of some existing properties to the entire iCalendar object.</t>
    </abstract>
  </front>
  <middle>
    <section title='Introduction'>
      <t>The <xref target='RFC5545'>iCalendar</xref> data format is used to represent calendar data and is used with <xref target='RFC5546'>iTIP</xref> to handle scheduling operations between calendar users. iCalendar is in widespread use, and in accordance with provisions in that specification, extension elements have been added by various vendors to the data format in order to support and enhance capabilities. This specification collects a number of these ad-hoc extensions and uses the new IANA registry capability defined in <xref target='RFC5545' /> to register standard variants with clearly defined definitions and semantics. In addition, some new elements are introduced for features that vendors have recently been requesting.</t>
    </section>
    <section title='Conventions Used in This Document'>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in <xref target='RFC2119' />.</t>
      <t>The notation used in this memo is the ABNF notation of <xref target='RFC5234' /> as used by <xref target='RFC5545'>iCalendar</xref>. Any syntax elements shown below that are not explicitly defined in this specification come from <xref target='RFC5545'>iCalendar</xref>.</t>
    </section>
    <section title="Backwards Compatible Extension Properties">
      <t>iCalendar defines properties which can have different value types indicated by a "VALUE" parameter. The definition of a property specifies a "default" value type that is assumed to be used when no "VALUE" parameter is present. However, this poses a problem to iCalendar parser/generator software that does not know about the default values for new properties. For example, if a new property "FOO" were defined with a default value type of URI, and a URI value with a comma was used, an iCalendar generator not aware of this fact would likely treat the property value as "TEXT" and apply backslash escaping to the comma in the value, effectively making it an invalid URI value.</t>
      <t>To avoid this problem, this specification recommends that all properties not defined in <xref target="RFC5545"/>, always include a "VALUE" parameter, if the type is other than "TEXT". i.e., in the example above, the "FOO" property would have a "VALUE=URI" parameter. This allows iCalendar parser/generator software to track the correct types of unknown properties.</t>
      <t>New properties defined in this specification use the term "no default" in the "Value Type" definition to indicate that the "VALUE" parameter has to be included.</t>
    </section>
    <section title="Modifications to Calendar Components">
      <t>The following changes to the syntax defined in <xref target='RFC5545'>iCalendar</xref> are made here. New elements are defined in subsequent sections. 
      <figure>
        <artwork name="abnf"><![CDATA[

calprops =/ *(
             ;
             ; The following are OPTIONAL,
             ; but MUST NOT occur more than once.
             ;
             uid / last-mod / url /
             refresh / source / color
             ;
             ; The following are OPTIONAL,
             ; and MAY occur more than once.
             ;
             name / description / categories /
             image
             ;
             )

eventprop =/ *(
              ;
              ; The following are OPTIONAL,
              ; but MUST NOT occur more than once.
              ;
              color /
              ;
              ; The following are OPTIONAL,
              ; and MAY occur more than once.
              ;
              conference / image
              ;
              )

todoprop =/ *(
             ;
             ; The following are OPTIONAL,
             ; but MUST NOT occur more than once.
             ;
             color /
             ;
             ; The following are OPTIONAL,
             ; and MAY occur more than once.
             ;
             conference / image
             ;
             )

jourprop =/ *(
             ;
             ; The following are OPTIONAL,
             ; but MUST NOT occur more than once.
             ;
             color /
             ;
             ; The following are OPTIONAL,
             ; and MAY occur more than once.
             ;
             image
             ;
             )
]]></artwork>
      </figure></t>
    </section>
    <section title="Properties">
      <section title="NAME Property" anchor="name">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">NAME</t>
            <t hangText="Purpose:">This property specifies the name of the calendar.</t>
            <t hangText="Value Type:">TEXT</t>
            <t hangText="Property Parameters:">IANA, non-standard, alternate text representation, and language property parameters can be specified on this property.</t>
            <t hangText="Conformance:">This property can be specified multiple times in an iCalendar object. However, each property MUST represent the name of the calendar in a different language.</t>
            <t hangText="Description:">This property is used to specify a name of the iCalendar object that can be used by calendar user agents when presenting the calendar data to a user. Whilst a calendar only has a single name, multiple language variants can be specified by including this property multiple times with different "LANGUAGE" parameter values on each.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
name       = "NAME" nameparam ":" text CRLF

nameparam  = *(
              ;
              ; The following are OPTIONAL,
              ; but MUST NOT occur more than once.
              ;
              (";" altrepparam) / (";" languageparam) /
              ;
              ; The following is OPTIONAL,
              ; and MAY occur more than once.
              ;
              (";" other-param)
              ;
              )
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following is an example of this property: 
            <figure>
              <artwork><![CDATA[
NAME:Company Vacation Days
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
      <section title="DESCRIPTION Property" anchor="description">
        <t>This specification modifies the definition of the "DESCRIPTION" property to allow it to be defined on an iCalendar object. The following additions are made to the definition of this property, originally specified in Section 3.8.1.5 of <xref target="RFC5545"/>. 
        <list style="hanging">
          <t hangText="Purpose:">This property specifies the description of the calendar.</t>
          <t hangText="Conformance:">This property can be specified multiple times in an iCalendar object. However, each property MUST represent the description of the calendar in a different language.</t>
          <t hangText="Description:">This property is used to specify a lengthy textual description of the iCalendar object that can be used by calendar user agents when describing the nature of the calendar data to a user. Whilst a calendar only has a single description, multiple language variants can be specified by including this property multiple times with different "LANGUAGE" parameter values on each.</t>
        </list></t>
      </section>
      <section title="UID Property" anchor="uid">
        <t>This specification modifies the definition of the "UID" property to allow it to be defined on an iCalendar object. The following additions are made to the definition of this property, originally specified in Section 3.8.4.7 of <xref target="RFC5545"/>.
        <list style="hanging">
          <t hangText="Purpose:">This property specifies the persistent, globally unique identifier for the iCalendar object. This can be used, for example, to identify duplicate calendar streams that a client may have been given access to. It can be used in conjunction with the "LAST-MODIFIED" property also specified on the "VCALENDAR" object, to identify the most recent version of a calendar.</t>
          <t hangText="Conformance:">This property can be specified once in an iCalendar object.</t>
        </list></t>
        <t>The description of the "UID" property in <xref target="RFC5545"/> contains some recommendations on how the value can be constructed. In particular, it suggests use of host names, IP addresses, and domain names to construct the value. However, this is no longer considered good practice, particularly from a security and privacy standpoint, since use of such values can leak key information about a calendar user, or their client and network environment. This specification updates <xref target="RFC5545"/> by stating that "UID" values MUST NOT include any data that might identify a user, host, domain, or any other security or privacy sensitive information. It is RECOMMENDED that calendar user agents now generate "UID" values that are hex-encoded random UUID values as defined in Sections 4.4 and 4.5 of <xref target="RFC4122"/>.</t>
            <t hangText="Example:">The following is an example of such a property value: 
            <figure>
              <artwork><![CDATA[
UID:5FC53010-1267-4F8E-BC28-1D7AE55A7C99
]]></artwork>
            </figure></t>
            <t>Additionally, if calendar user agents choose to use other forms of opaque identifiers for the "UID" value, they MUST have a length less than 255 octets, and MUST conform to the "iana-token" ABNF syntax defined in Section 3.1 of <xref target="RFC5545"/>.</t>
      </section>
      <section title="LAST-MODIFIED Property" anchor="lastmod">
        <t>This specification modifies the definition of the "LAST-MODIFIED" property to allow it to be defined on an iCalendar object. The following additions are made to the definition of this property, originally specified in Section 3.8.7.3 of <xref target="RFC5545"/>.
        <list style="hanging">
          <t hangText="Purpose:">This property specifies the date and time that the information associated with the calendar was last revised.</t>
          <t hangText="Conformance:">This property can be specified once in an iCalendar object.</t>
        </list></t>
      </section>
      <section title="URL Property" anchor="url">
        <t>This specification modifies the definition of the "URL" property to allow it to be defined on an iCalendar object. The following additions are made to the definition of this property, originally specified in Section 3.8.4.6 of <xref target="RFC5545"/>.
        <list style="hanging">
          <t hangText="Purpose:">This property may be used to convey a location where a more dynamic rendition of the calendar information can be found.</t>
          <t hangText="Conformance:">This property can be specified once in an iCalendar object.</t>
        </list></t>
      </section>
      <section title="CATEGORIES Property" anchor="categories">
        <t>This specification modifies the definition of the "CATEGORIES" property to allow it to be defined on an iCalendar object. The following additions are made to the definition of this property, originally specified in Section 3.8.1.2 of <xref target="RFC5545"/>.
        <list style="hanging">
          <t hangText="Purpose:">This property defines the categories for an entire calendar.</t>
          <t hangText="Conformance:">This property can be specified multiple times in an iCalendar object.</t>
          <t hangText="Description:">When multiple properties are present, the set of categories that apply to the iCalendar object are the union of all the categories listed in each property value.</t>
        </list></t>
      </section>
      <section title="REFRESH-INTERVAL Property" anchor="refresh-interval">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">REFRESH-INTERVAL</t>
            <t hangText="Purpose:">This property specifies a suggested minimum interval for polling for changes of the calendar data from the original source of that data.</t>
            <t hangText="Value Type:">DURATION - no default</t>
            <t hangText="Property Parameters:">IANA and non-standard property parameters can be specified on this property.</t>
            <t hangText="Conformance:">This property can be specified once in an iCalendar object.</t>
            <t hangText="Description:">This property specifies a positive duration that gives a suggested minimum polling interval for checking for updates to the calendar data. The value of this property SHOULD be used by calendar user agents to limit the polling interval for calendar data updates to the minimum interval specified.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
refresh      = "REFRESH-INTERVAL" refreshparam
                 ":" dur-value CRLF
                 ;consisting of a positive duration of time.

refreshparam = *(
                ;
                ; The following is REQUIRED,
                ; but MUST NOT occur more than once.
                ;
                (";" "VALUE" "=" "DURATION") /
                ;
                ; The following is OPTIONAL,
                ; and MAY occur more than once.
                ;
                (";" other-param)
                ;
                )
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following is an example of this property: 
            <figure>
              <artwork><![CDATA[
REFRESH-INTERVAL;VALUE=DURATION:P1W
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
      <section title="SOURCE Property" anchor="source">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">SOURCE</t>
            <t hangText="Purpose:">This property identified a URI where calendar data can be refreshed from.</t>
            <t hangText="Value Type:">URI - no default</t>
            <t hangText="Property Parameters:">IANA and non-standard property parameters can be specified on this property.</t>
            <t hangText="Conformance:">This property can be specified once in an iCalendar object.</t>
            <t hangText="Description:">This property identifies a location where a client can retrieve updated data for the calendar. Clients SHOULD honor any specified "REFRESH-INTERVAL" value when periodically retrieving data. Note that this property differs from the "URL" property in that "URL" is meant to provide an alternative representation of the calendar data, rather than the original location of the data.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
source       = "SOURCE" sourceparam ":" uri CRLF

sourceparam = *(";" other-param)
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following is an example of this property: 
            <figure>
              <artwork><![CDATA[
SOURCE;VALUE=URI:https://example.com/holidays.ics
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
      <section title="COLOR Property" anchor="color">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">COLOR</t>
            <t hangText="Purpose:">This property specifies a color used for displaying the calendar, event, todo, or journal data.</t>
            <t hangText="Value Type:">TEXT</t>
            <t hangText="Property Parameters:">IANA and non-standard property parameters can be specified on this property.</t>
            <t hangText="Conformance:">This property can be specified once in an iCalendar object, or "VEVENT", "VTODO", or "VJOURNAL" calendar components.</t>
            <t hangText="Description:">This property specifies a color that clients MAY use when presenting the relevant data to a user. Typically this would appear as the "background" color of events or tasks. The value is a case-insensitive color name taken from the CSS3 set of names, defined in Section 4.3 of <xref target="W3C.REC-css3-color-20110607"/>.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
color          = "COLOR" colorparam ":" text CRLF
                  ; Value is CSS3 color name

colorparam     = *(";" other-param)
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following is an example of this property: 
            <figure>
              <artwork><![CDATA[
COLOR:turquoise
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
      <section title="IMAGE Property" anchor="image">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">IMAGE</t>
            <t hangText="Purpose:">This property specifies an image associated with the calendar or a calendar component.</t>
            <t hangText="Value Type:">URI or BINARY - no default. The value MUST refer to or be data with a media type of "image".</t>
            <t hangText="Property Parameters:">IANA, non-standard, display, inline encoding, and value data type property parameters can be specified on this property. The format type parameter can be specified on this property and is RECOMMENDED for inline binary encoded content information.</t>
            <t hangText="Conformance:">This property can be specified multiple times in an iCalendar object, or "VEVENT", "VTODO", or "VJOURNAL" calendar components.</t>
            <t hangText="Description:">This property specifies an image for an iCalendar object or a calendar component via a uri or directly with inline data that can be used by calendar user agents when presenting the calendar data to a user. Multiple properties MAY be used to specify alternative sets of images with, for example, varying media subtypes, resolutions or sizes. When multiple properties are present, calendar user agents SHOULD display only one of them, picking one that provides the most appropriate image quality, or display none. The "DISPLAY" parameter is used to indicate the intended display mode for the image. The "ALTREP" parameter, defined in <xref target="RFC5545"/>, can be used to provide a "clickable" image where the URI in the parameter value can be "launched" by a click on the image in the calendar user agent.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
image      = "IMAGE" imageparam
             (
               (
                 ";" "VALUE" "=" "URI"
                 ":" uri
               ) /
               (
                 ";" "ENCODING" "=" "BASE64"
                 ";" "VALUE" "=" "BINARY"
                 ":" binary
               )
             )
             CRLF

imageparam = *(
              ;
              ; The following is OPTIONAL for a URI value,
              ; RECOMMENDED for a BINARY value,
              ; and MUST NOT occur more than once.
              ;
              (";" fmttypeparam) /
              ;
              ; The following are OPTIONAL,
              ; and MUST NOT occur more than once.
              ;
              (";" altrepparam) / (";" displayparam) /
              ;
              ; The following is OPTIONAL,
              ; and MAY occur more than once.
              ;
              (";" other-param)
              ;
              )
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following is an example of this property: 
            <figure>
              <artwork><![CDATA[
IMAGE;VALUE=URI;DISPLAY=BADGE;FMTTYPE=image/png:h
 ttp://example.com/images/party.png
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
      <section title="CONFERENCE Property" anchor="conference">
        <t>
          <list style="hanging">
            <t hangText="Property Name:">CONFERENCE</t>
            <t hangText="Purpose:">This property specifies information for accessing a conferencing system.</t>
            <t hangText="Value Type:">URI - no default.</t>
            <t hangText="Property Parameters:">IANA, non-standard, feature,  and label property parameters can be specified on this property.</t>
            <t hangText="Conformance:">This property can be specified multiple times in a "VEVENT" or "VTODO" calendar component.</t>
            <t hangText="Description:">This property specifies information for accessing a conferencing system for attendees of a meeting or task. This might be for a telephone-based conference number dial-in with access codes included (such as a <xref target='RFC3966'>tel: URI</xref> or a <xref target='RFC3261'>sip: or sips: URI</xref>), or it might be for a web-based video chat (such as an <xref target='RFC7230'>http: or https: URI</xref>), or a URI for an instant messaging group chat room (such as an <xref target='RFC5122'>xmpp: URI</xref>). If a specific URI for a conferencing system is not available, a <xref target='RFC2397'>data: URI</xref> containing a text description can be used.</t>
            <t>A conference system can be a bi-directional communication channel, or a uni-directional "broadcast feed".</t>
            <t>The "FEATURE" property parameter is used to describe the key capabilities of the conference system to allow a client to choose the ones that give the required level of interaction from a set of multiple properties.</t>
            <t>The "LABEL" property paramater is used to convey additional details on the use of the URI. For example, the URIs or access codes for the moderator and attendee of a teleconference system could be different, and the "LABEL" property parameter could be used to "tag" each "CONFERENCE" property to indicate which is which.</t>
            <t>The "LANGUAGE" property parameter can be used to specify the language used for text values used with this property (as per Section 3.2.10 of <xref target='RFC5545' />.</t>
            <t hangText="Format Definition:">This property is defined by the following notation: 
            <figure>
              <artwork name="abnf"><![CDATA[
conference = "CONFERENCE" confparam  ":" uri CRLF

confparam  = *(
              ;
              ; The following is REQUIRED,
              ; but MUST NOT occur more than once.
              ;
              (";" "VALUE" "=" "URI") /
              ;
              ; The following are OPTIONAL,
              ; and MUST NOT occur more than once.
              ;
              (";" featureparam) / (";" labelparam) /
              (";" languageparam ) /
              ;
              ; The following is OPTIONAL,
              ; and MAY occur more than once.
              ;
              (";" other-param)
              ;
              )
]]></artwork>
            </figure></t>
            <t hangText="Example:">The following are examples of this property: 
            <figure>
              <artwork><![CDATA[
CONFERENCE;VALUE=URI;FEATURE=PHONE,MODERATOR;
 LABEL=Moderator dial-in:tel:+1-412-555-0123,,,654321
CONFERENCE;VALUE=URI;FEATURE=PHONE;
 LABEL=Attendee dial-in:tel:+1-412-555-0123,,,555123
CONFERENCE;VALUE=URI;FEATURE=PHONE;
 LABEL=Attendee dial-in:tel:+1-888-555-0456,,,555123
CONFERENCE;VALUE=URI;FEATURE=CHAT;
 LABEL=Chat room:xmpp:chat-123@conference.example.com
CONFERENCE;VALUE=URI;FEATURE=AUDIO,VIDEO;
 LABEL=Attendee dial-in:https://chat.example.com/audio?id=123456
]]></artwork>
            </figure></t>
          </list>
        </t>
      </section>
    </section>
    <section title="Property Parameters">
      <section title="DISPLAY Property Parameter" anchor="display">
        <t>
          <list style="hanging">
            <t hangText="Parameter Name:">DISPLAY</t>
            <t hangText="Purpose:">To specify different ways in which an image for a calendar or component can be displayed.</t>
            <t hangText="Format Definition:">This property parameter is defined by the following notation: 
            <figure>
              <artwork name="abnf-rfc5234"><![CDATA[
displayparam = "DISPLAY" "=" displayval *("," displayval)

displayval =  ("BADGE" /     ; image inline with the title of the
                             ; event
               "GRAPHIC" /   ; a full image replacement for the event
                             ; itself
               "FULLSIZE" /  ; an image that is used to enhance the
                             ; event
               "THUMBNAIL" / ; a smaller variant of "FULLSIZE" to be
                             ; used when space for the image is
                             ; constrained
               x-name /      ; Experimental type
               iana-token)   ; Other IANA registered type
                             ;
                             ; Default is BADGE
]]></artwork>
            </figure></t>
            <t hangText="Description:">This property parameter MAY be specified on "IMAGE" properties. In the absence of this parameter, the default value "BADGE" MUST be used. The value determines how a client ought to present an image supplied in iCalendar data to the user.</t>
            <t>Values for this parameter are registered with IANA as per <xref target='iana_display_types' />. New values can be added to this registry following the procedure outlined in Section 8.2.1 of <xref target="RFC5545" />.</t>
            <t>Servers and clients MUST handle x-name and iana-token values they don't recognize by not displaying any image at all.</t>
            <t hangText="Example:">
              <figure>
                <artwork><![CDATA[
IMAGE;VALUE=URI;DISPLAY=BADGE,THUMBNAIL;FMTTYPE=image/png:https://exa
 mple.com/images/weather-cloudy.png
]]></artwork>
              </figure>
            </t>
          </list>
        </t>
      </section>
      <section title="EMAIL Property Parameter" anchor="email">
        <t>
          <list style="hanging">
            <t hangText="Parameter Name:">EMAIL</t>
            <t hangText="Purpose:">To specify an email address that is used to identify or contact an organizer or attendee.</t>
            <t hangText="Format Definition:">This property parameter is defined by the following notation: 
            <figure>
              <artwork name="abnf-rfc5234"><![CDATA[
emailparam = "EMAIL" "=" param-value
]]></artwork>
            </figure></t>
            <t hangText="Description:">This property parameter MAY be specified on "ORGANIZER" or "ATTENDEE" properties. This property can be used in situations where the calendar user address value of "ORGANIZER" and "ATTENDEE" properties is not likely to be an identifier that recipients of scheduling messages could use to match the calendar user with, for example, an address book entry. The value of this property is an email address that can easily be matched by recipients. Recipients can also use this value as an alternative means of contacting the calendar user via email. If a recipient's calendar user agent allows the recipient to save contact information based on the "ORGANIZER" or "ATTENDEE" properties, those calendar user agents SHOULD use any "EMAIL" property parameter value for the email address of the contact over any mailto: calendar user address specified as the value of the property. Calendar user agents SHOULD NOT include an "EMAIL" property parameter when its value matches the calendar user address specified as the value of the property.</t>
            <t hangText="Example:">
              <figure>
                <artwork><![CDATA[
ATTENDEE;CN=Cyrus Daboo;EMAIL=cyrus@example.com:mailto:opaque-toke
 n-1234@example.com
]]></artwork>
              </figure>
            </t>
          </list>
        </t>
      </section>
      <section title="FEATURE Property Parameter" anchor="feature">
        <t>
          <list style="hanging">
            <t hangText="Parameter Name:">FEATURE</t>
            <t hangText="Purpose:">To specify a feature or features of a conference or broadcast system.</t>
            <t hangText="Format Definition:">This property parameter is defined by the following notation: 
            <figure>
              <artwork name="abnf-rfc5234"><![CDATA[
featureparam = "FEATURE" "=" featuretext *("," featuretext)
featuretext  =  ("AUDIO" /     ; Audio capability
                 "CHAT" /      ; Chat or instant messaging
                 "FEED" /      ; Blog or Atom feed
                 "MODERATOR" / ; Moderator dial-in code
                 "PHONE" /     ; Phone conference
                 "SCREEN" /    ; Screen sharing
                 "VIDEO" /     ; Video capability
                 x-name /      ; Experimental type
                 iana-token)   ; Other IANA registered type
]]></artwork>
            </figure></t>
            <t hangText="Description:">This property parameter MAY be specified on the "CONFERENCE" property. Multiple values can be specified. The "MODERATOR" value is used to indicate that the property value is specific to the owner/initiator of the conference and contains a URI that "activates" the system (e.g., a "moderator" access code for a phone conference system that is different from the "regular" access code).</t>
            <t hangText="Example:">
              <figure>
                <artwork><![CDATA[
CONFERENCE;VALUE=URI;FEATURE=AUDIO:rtsp://audio.example.com/
 event
CONFERENCE;VALUE=URI;FEATURE=AUDIO,VIDEO:https://video-chat.exam
 ple.com/;group-id=1234
]]></artwork>
              </figure>
            </t>
          </list>
        </t>
      </section>
      <section title="LABEL Property Parameter" anchor="label">
        <t>
          <list style="hanging">
            <t hangText="Parameter Name:">LABEL</t>
            <t hangText="Purpose:">To provide a human readable label.</t>
            <t hangText="Format Definition:">This property parameter is defined by the following notation: 
            <figure>
              <artwork name="abnf-rfc5234"><![CDATA[
labelparam = "LABEL" "=" param-value
]]></artwork>
            </figure></t>
            <t hangText="Description:">This property parameter MAY be specified on the "CONFERENCE" property. It is anticipated that other extensions to iCalendar will re-use this property parameter on new properties that they define. As a result, clients MUST expect to find this property parameter present on many different properties. It provides a human readable label that can be presented to calendar users to allow them to discriminate between properties which might be similar, or provide additional information for properties that are not self-describing. The "LANGUAGE" property parameter can be used to specify the language of the text in the parameter value (as per Section 3.2.10 of <xref target='RFC5545' />.</t>
            <t hangText="Example:">
              <figure>
                <artwork><![CDATA[
CONFERENCE;VALUE=URI;FEATURE=VIDEO;
 LABEL="Web video chat, access code=76543";
 :https://video-chat.example.com/;group-id=1234
]]></artwork>
              </figure>
            </t>
          </list>
        </t>
      </section>
    </section>
    <section title='Security Considerations'>
      <t>Several of the new properties or parameters defined by this specification allow reference to "external" URIs. Care MUST be taken when accessing data at external URIs as malicious content could be present. Clients SHOULD ensure that suitable permission is granted by calendar users before such URIs are dereferenced.</t>
      <t> The "REFRESH-INTERVAL" property could be used by an attacker to make a client carry out rapid requests to the server hosting the calendar, by specifying a very short duration (e.g., one second). This could lead to resource consumption on the client or server, and denial-of-service attacks against the server. Clients MUST ensure that they throttle requests to the server to a reasonable rate. In most cases, updating a public calendar once per day would suffice. If the "REFRESH-INTERVAL" is any less than that, clients SHOULD warn the calendar user and allow them to override it with a longer value.</t>
      <t>The "CONFERENCE" property can include a "FEATURE" property parameter with a "MODERATOR" value. In some cases the access code used by the owner/initiator of a conference might be private to an individual and clients and servers MUST ensure that such properties are not sent to attendees of a scheduled component, or sharees of a shared component.</t>
      <t>Both the "COLOR" and "IMAGE" properties are likely to be used by calendar users to express their own personal view of the calendar data. In addition, these properties could be used by attackers to produce a confusing display in a calendar user agent. When such properties are encountered in calendar data that has come from other calendar users (e.g., via a scheduling message, "public" calendar subscription, shared calendar etc), it is advisable for the client to give the receiving calendar user the option to remove (or adjust) these properties as the data is imported into their calendar system.</t>
      <t>This specification changes the recommendations on how "UID" property values are constructed to minimize leaking any information that might be security sensitive.</t>
      <t>
        Security considerations in <xref target="RFC5545" />, and <xref target="RFC5546" /> MUST also be adhered to.
      </t>
    </section>
    <section title='Privacy Considerations'>
      <t>Several of the new properties or parameters defined by this specification allow reference to "external" URIs. Access to those URIs could be tracked, leading to loss of privacy. Clients SHOULD ensure that suitable permission is granted by calendar users before such URIs are dereferenced. In particular, calendar publishers wishing to help protect the privacy of their subscribers MUST use <xref target='RFC7230'>HTTP with Transport Layer Security</xref> ("https:" URIs instead of "http:" URIs) for access to calendar data or ancillary data such as images.</t>
      <t>In general, users have to rely on the privacy policies of any conferencing system being accessed via the "CONFERENCE" property, for their own privacy protection. It is entirely possible for such systems to uniquely identify and log the activity and participation (or not) of calendar users in the conference. Calendar user agents SHOULD track which conferencing systems are used and warn users the first time a new one is about to be used. This is particularly important if the client automatically "dials in" to the conference when the event start time occurs.</t>
      <t>By giving different calendar users different values for the "REFRESH-INTERVAL" property, it is possible for a publisher of calendar data to uniquely identify each refresh from each calendar users' clients, and thereby track user activity and IP address over time. To address this, clients SHOULD add or subtract some random amount of time from the published "REFRESH-INTERVAL" value when doing actual refreshes.</t>
      <t>This specification changes the recommendations on how "UID" property values are constructed to minimize leaking any information that might be privacy sensitive.</t>
        <t>Privacy considerations in <xref target="RFC5545" />, and <xref target="RFC5546" /> MUST also be adhered to.</t>
    </section>
    <section title='IANA Considerations'>
      <section title='Property Registrations'>
        <t>This document defines the following new iCalendar properties to be added to the registry defined in Section 8.3.2 of <xref target="RFC5545" />:</t>
        <texttable>
          <ttcol>Property</ttcol>
          <ttcol>Status</ttcol>
          <ttcol>Reference</ttcol>
          <c>NAME</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="name" /></c>
          <c>DESCRIPTION</c>
          <c>Current</c>
          <c>RFC5545 Section 3.8.1.5, RFCXXXX, <xref target="description" /></c>
          <c>UID</c>
          <c>Current</c>
          <c>RFC5545 Section 3.8.4.7, RFCXXXX, <xref target="uid" /></c>
          <c>LAST-MODIFIED</c>
          <c>Current</c>
          <c>RFC5545 Section 3.8.7.3, RFCXXXX, <xref target="lastmod" /></c>
          <c>URL</c>
          <c>Current</c>
          <c>RFC5545 Section 3.8.4.6, RFCXXXX, <xref target="url" /></c>
          <c>CATEGORIES</c>
          <c>Current</c>
          <c>RFC5545 Section 3.8.1.2, RFCXXXX, <xref target="categories" /></c>
          <c>REFRESH-INTERVAL</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="refresh-interval" /></c>
          <c>SOURCE</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="source" /></c>
          <c>COLOR</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="color" /></c>
          <c>IMAGE</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="image" /></c>
          <c>CONFERENCE</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="conference" /></c>
        </texttable>
      </section>
      <section title='Parameter Registrations'>
        <t>This document defines the following new iCalendar property parameters to be added to the registry defined in Section 8.3.3 of <xref target="RFC5545" />:</t>
        <texttable>
          <ttcol>Property Parameter</ttcol>
          <ttcol>Status</ttcol>
          <ttcol>Reference</ttcol>
          <c>DISPLAY</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="display" /></c>
          <c>EMAIL</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="email" /></c>
          <c>FEATURE</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="feature" /></c>
          <c>LABEL</c>
          <c>Current</c>
          <c>RFCXXXX, <xref target="label" /></c>
        </texttable>
      </section>
      <section title='Property Parameter Value Registries'>
        <t>Two new IANA registries for iCalendar elements have been added.  Additional codes MAY be used, provided the process described in Section 8.2.1 of <xref target="RFC5545" /> is used to register them, using the template in Section 8.2.6 of <xref target="RFC5545" />.</t>
        <section anchor='iana_display_types' title='Display Types Registry'>
          <t>The following table has been used to initialize the Display Types Registry.</t>
          <texttable>
            <ttcol>Display Type</ttcol>
            <ttcol>Status</ttcol>
            <ttcol>Reference</ttcol>
            <c>BADGE</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="display" /></c>
            <c>GRAPHIC</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="display" /></c>
            <c>FULLSIZE</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="display" /></c>
            <c>THUMBNAIL</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="display" /></c>
          </texttable>
        </section>
        <section anchor='iana_feature_types' title='Feature Types Registry'>
          <t>The following table has been used to initialize the Feature Types Registry.</t>
          <texttable>
            <ttcol>Feature Type</ttcol>
            <ttcol>Status</ttcol>
            <ttcol>Reference</ttcol>
            <c>AUDIO</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>CHAT</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>FEED</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>MODERATOR</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>PHONE</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>SCREEN</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
            <c>VIDEO</c>
            <c>Current</c>
            <c>RFCXXXX, <xref target="feature" /></c>
          </texttable>
        </section>
      </section>
    </section>
    <section title='Acknowledgments'>
      <t>Thanks to the following for feedback:
      Bernard Desruisseaux,
      Mike Douglass,
      Lucia Fedorova,
      Ken Murchison,
      Arnaud Quillaud,
      and Dave Thewlis.
      </t>
      <t>This specification came about via discussions at the Calendaring and Scheduling Consortium.</t>
    </section>
  </middle>
  <back>
    <references title='Normative References'>
      &rfc2119;
      &rfc4122;
      &rfc5234;
      &rfc5545;
      &rfc5546;
      &W3C.REC-css3-color-20110607;
    </references>
    <references title='Informative References'>
      &rfc2397;
      &rfc3261;
      &rfc3966;
      &rfc5122;
      &rfc7230;
    </references>
    <section title="Change History (To be removed by RFC Editor before publication)">
      <t>Changes in draft-ietf-calext-extensions-05:
      <list style='numbers'>
        <t>IESG: Fixed IANA section to properly define the two new registries.</t>
        <t>IESG: Added xmpp, sip, and sips as example URIs for CONFERENCE.</t>
        <t>IESG: Added languageparam to CONFERENCE and also indicated it can appear alongside LABEL.</t>
        <t>IESG: Changed SHOULD -> MUST for clients to expect LABEL.</t>
        <t>IESG: Privacy: use https: instead of http:.</t>
        <t>IESG: Privacy: text on tracking via CONFERENCE.</t>
        <t>IESG: Privacy: text on tracking via REFRESH-INTERVAL.</t>
        <t>IESG: Modified UID value generation to be stricter about what is allowed..</t>
        <t>IESG: Other editorial tweaks.</t>
        <t>Removed CONFERENCE from VJOURNAL ABNF.</t>
      </list>
      </t>
      <t>Changes in draft-ietf-calext-extensions-04:
      <list style='numbers'>
        <t>SECDIR: Added new items to Security Considerations and added Privacy Considerations.</t>
        <t>SECDIR: fixed missing conference item in component ABNF definitions.</t>
        <t>SECDIR: editorial fixes.</t>
      </list>
      </t>
      <t>Changes in draft-ietf-calext-extensions-03:
      <list style='numbers'>
        <t>AD: fixed =/ ABNF syntax.</t>
        <t>AD: added description for CATEGORIES.</t>
        <t>AD: Removed extra / in image ABNF.</t>
        <t>AD: Fixed VALUE=URI in image ABNF.</t>
        <t>AD: Mention https in addition to http. Changed all examples to use https:</t>
        <t>AD: fixed DISPLAY ABNF syntax.</t>
      </list>
      </t>
      <t>Changes in draft-ietf-calext-extensions-02:
      <list style='numbers'>
        <t>Refresh expired draft - no changes.</t>
      </list>
      </t>
      <t>Changes in draft-ietf-calext-extensions-01:
      <list style='numbers'>
        <t>Clarified difference between SOURCE and URL properties.</t>
        <t>Use labelparam not infoparam.</t>
      </list>
      </t>
      <t>Changes in draft-ietf-calext-extensions-00:
      <list style='numbers'>
        <t>Document renamed after WG adoption.</t>
        <t>Fixed tel: URI reference.</t>
      </list>
      </t>
      <t>Changes in draft-daboo-icalendar-extensions-09: 
      <list style='numbers'>
        <t>Re-instated a trimmed down version of the CONFERENCE property after serious interest expressed by implementors.</t>
        <t>LABEL property used instead of INFO - appropriated from another iCalendar draft.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-08: 
      <list style='numbers'>
        <t>Trimmed down the display values to a minimal set.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-07: 
      <list style='numbers'>
        <t>Removed ALTURI parameter - now use ALTREP.</t>
        <t>Removed VALID property.</t>
        <t>Removed TIMEZONE-ID property.</t>
        <t>Added FULLSIZE and THUMBNAIL display values.</t>
        <t>Added EMAIL property parameter.</t>
        <t>Added LAST-MODIFIED property for use with VCALENDAR.</t>
        <t>Added CATEGORIES property for use with VCALENDAR.</t>
        <t>URL use now aligned with 5545.</t>
        <t>Added SOURCE property.</t>
        <t>COLOR now uses CSS3 values.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-06: 
      <list style='numbers'>
        <t>Removed BROADCAST/CONFERENCE properties and related parameters.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-05: 
      <list style='numbers'>
        <t>Added section with recommendation on handling extension properties.</t>
        <t>Added VALID property.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-04: 
      <list style='numbers'>
        <t>TZID changed to new property TIMEZONE-ID.</t>
        <t>Minor formal syntax changes.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-03: 
      <list style='numbers'>
        <t>Dropped CALENDAR- prefix</t>
        <t>DESCRIPTION, UID and TZID now based on existing RFC5545 properties</t>
        <t>COLOR now on both the calendar and component level</t>
        <t>IMAGE now on both the calendar and component level</t>
        <t>Added FEATURE and REGION parameters to CONFERENCE property</t>
        <t>Added ALTURI parameter to IMAGE property</t>
        <t>Added FEED value to FEATURE parameter</t>
        <t>Added BROADCAST property and clarified that CONFERENCE is for bi-direction channels and BROADCAST is for uni-directional.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-02: 
      <list style='numbers'>
        <t>Minor wording changes.</t>
        <t>Interval is now described as the "minimum interval".</t>
        <t>Added CONFERENCE property and INFO parameter.</t>
      </list></t>
      <t>Changes in draft-daboo-icalendar-extensions-01: 
      <list style='numbers'>
        <t>Fixed DISPLAY parameter handling of x- and iana tokens to state that clients ignore the image if the token is not recognized.</t>
        <t>Allow language variants for CALENDAR-NAME and CALENDAR-DESCRIPTION.</t>
        <t>Added registry for DISPLAY values.</t>
      </list></t>
    </section>
  </back>
</rfc>
