> There are a way for show only for example the `user from name'? or only
> the `user e-mail address?, I mean, the mail-header-from var show both, 
> how I can show only one?

Replace

(mail-header-from message-reply-headers)

by

(car
  (mail-extract-address-components
  (mail-header-from message-reply-headers))) 

or

(cadr
  (mail-extract-address-components
  (mail-header-from message-reply-headers)))

-- 
DW
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to