1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-28 19:42:02 +00:00

lisp/gnus/gnus-icalendar.el (gnus-icalendar-identities): Include message-alternative-emails

This commit is contained in:
Jan Tatarik 2014-10-06 22:11:44 +00:00 committed by Katsumi Yamaoka
parent ceea5375ae
commit 83f046769b
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-10-06 Jan Tatarik <jan.tatarik@gmail.com>
* gnus-icalendar.el (gnus-icalendar-identities):
Include message-alternative-emails.
2014-10-04 Alan Schmitt <alan.schmitt@polytechnique.org> (tiny change)
* nnimap.el (nnimap-process-expiry-targets): Reverse the list of

View File

@ -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