Function: hashcash-strip-quoted-names
hashcash-strip-quoted-names is a byte-compiled function defined in
hashcash.el.gz.
Signature
(hashcash-strip-quoted-names ADDR)
Source Code
;; Defined in /usr/src/emacs/lisp/mail/hashcash.el.gz
(defun hashcash-strip-quoted-names (addr)
(setq addr (mail-strip-quoted-names addr))
(if (and addr (string-match "\\`\\([^+@]+\\)\\+[^@]*\\(@.+\\)" addr))
(concat (match-string 1 addr) (match-string 2 addr))
addr))