Function: icalendar-match-sent-by-param

icalendar-match-sent-by-param is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-sent-by-param LIMIT)

Documentation

Matcher for SENT-BY parameter.

(Defined by icalendar-define-param.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-param ical:sentbyparam "SENT-BY"
  "Sent by.

This parameter specifies a calendar user that is acting on behalf
of the user in the property value."
  ;; "The parameter value MUST be a mailto URI as defined in [RFC2368]"
  ;; Weirdly, this is the only place in the standard I've seen "mailto:"
  ;; be *required* for a cal-address.  We ignore this requirement because
  ;; coding around the exception is not worth it: it requires working
  ;; around the fact that two different types, the looser and the more
  ;; stringent cal-address, would need to have the same print name.
  ical:cal-address
  :quoted t
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.2.18")