From: Jan Tatarik Date: Mon, 6 Oct 2014 22:11:44 +0000 (+0000) Subject: lisp/gnus/gnus-icalendar.el (gnus-icalendar-identities): Include message-alternative... X-Git-Tag: emacs-25.0.90~2635^2~679^2~106 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=83f046769b634f215e1ca946cf45a705c955c79f;p=emacs.git lisp/gnus/gnus-icalendar.el (gnus-icalendar-identities): Include message-alternative-emails --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 728858c281b..6c59200dfa6 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2014-10-06 Jan Tatarik + + * gnus-icalendar.el (gnus-icalendar-identities): + Include message-alternative-emails. + 2014-10-04 Alan Schmitt (tiny change) * nnimap.el (nnimap-process-expiry-targets): Reverse the list of diff --git a/lisp/gnus/gnus-icalendar.el b/lisp/gnus/gnus-icalendar.el index 9027c53a6f3..3362cc87811 100644 --- a/lisp/gnus/gnus-icalendar.el +++ b/lisp/gnus/gnus-icalendar.el @@ -676,8 +676,9 @@ Gnus will only offer you the Accept/Tentative/Decline buttons for calendar events if any of your identities matches at least one RSVP participant. -Your identity is guessed automatically from the variables `user-full-name', -`user-mail-address', and `gnus-ignored-from-addresses'. +Your identity is guessed automatically from the variables +`user-full-name', `user-mail-address', +`gnus-ignored-from-addresses' and `message-alternative-emails'. If you need even more aliases you can define them here. It really only makes sense to define names or email addresses." @@ -703,6 +704,7 @@ These will be used to retrieve the RSVP information from ical events." (list user-full-name (regexp-quote user-mail-address) ; NOTE: these can be lists gnus-ignored-from-addresses ; already regexp-quoted + message-alternative-emails ; (mapcar #'regexp-quote gnus-icalendar-additional-identities))))) ;; TODO: make the template customizable