Function: gnus-icalendar-identities

gnus-icalendar-identities is a byte-compiled function defined in gnus-icalendar.el.gz.

Signature

(gnus-icalendar-identities)

Documentation

Return list of regexp-quoted names and email addresses belonging to the user.

These will be used to retrieve the RSVP information from ical events.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-icalendar.el.gz
(defun gnus-icalendar-identities ()
  "Return list of regexp-quoted names and email addresses belonging to the user.

These will be used to retrieve the RSVP information from ical events."
  (apply #'append
         (mapcar
	  (lambda (x) (if (listp x) x (list x)))
	  (list user-full-name (regexp-quote user-mail-address)
		;; NOTE: these can be lists
		gnus-ignored-from-addresses ; String or function.
		message-alternative-emails  ;  String or function.
		(mapcar #'regexp-quote gnus-icalendar-additional-identities)))))