Function: gnus-button-handle-mid-or-mail
gnus-button-handle-mid-or-mail is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-button-handle-mid-or-mail MID-OR-MAIL)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-button-handle-mid-or-mail (mid-or-mail)
(let* ((pref gnus-button-prefer-mid-or-mail) guessed
(url-mid (concat "news" ":" mid-or-mail))
(url-mailto (concat "mailto" ":" mid-or-mail)))
(gnus-message 9 "mid-or-mail=%s" mid-or-mail)
(when (fboundp pref)
(setq guessed
;; get rid of surrounding angles...
(funcall pref
(replace-regexp-in-string "^<\\|>$" "" mid-or-mail)))
(if (or (eq 'mid guessed) (eq 'mail guessed))
(setq pref guessed)
(setq pref 'ask)))
(if (eq pref 'ask)
(save-window-excursion
(if (y-or-n-p (concat "Is <" mid-or-mail "> a mail address? "))
(setq pref 'mail)
(setq pref 'mid))))
(cond ((eq pref 'mid)
(gnus-message 8 "calling `gnus-button-handle-news' %s" url-mid)
(gnus-button-handle-news url-mid))
((eq pref 'mail)
(gnus-message 8 "calling `gnus-url-mailto' %s" url-mailto)
(gnus-url-mailto url-mailto))
(t (gnus-message 3 "Invalid string.")))))