Variable: diary-icalendar-skip-addresses-regexp
diary-icalendar-skip-addresses-regexp is a customizable variable
defined in diary-icalendar.el.gz.
Value
"\\<root@4dc61ca65f77\\'"
Documentation
Regular expression matching addresses to skip when importing.
This regular expression should match calendar addresses (which are typically "mailto:" URIs) which should be skipped when importing ATTENDEE, ORGANIZER, and other iCalendar properties that identify a contact.
You can make this match your own email address(es) to prevent them from
being formatted by diary-icalendar-attendee-format-function and
listed in diary entries.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-icalendar.el.gz
(defcustom di:skip-addresses-regexp
(concat "\\<" (regexp-quote user-mail-address) "\\'")
"Regular expression matching addresses to skip when importing.
This regular expression should match calendar addresses (which are
typically \"mailto:\" URIs) which should be skipped when importing
ATTENDEE, ORGANIZER, and other iCalendar properties that identify a
contact.
You can make this match your own email address(es) to prevent them from
being formatted by `diary-icalendar-attendee-format-function' and
listed in diary entries."
:version "31.1"
:type '(regexp))