comparison lisp/mail/rmail.el @ 62587:bb278282ddbc

(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 21 May 2005 14:13:00 +0000
parents a7e02ef1e3d6
children e73a53eb777e 5b029ff3b08d
comparison
equal deleted inserted replaced
62586:5ff8434df6b3 62587:bb278282ddbc
3442 ;; Using mail-strip-quoted-names is undesirable with newer mailers 3442 ;; Using mail-strip-quoted-names is undesirable with newer mailers
3443 ;; since they can handle the names unstripped. 3443 ;; since they can handle the names unstripped.
3444 ;; I don't know whether there are other mailers that still 3444 ;; I don't know whether there are other mailers that still
3445 ;; need the names to be stripped. 3445 ;; need the names to be stripped.
3446 ;;; (mail-strip-quoted-names reply-to) 3446 ;;; (mail-strip-quoted-names reply-to)
3447 reply-to 3447 ;; Remove unwanted names from reply-to, since Mail-Followup-To
3448 ;; header causes all the names in it to wind up in reply-to, not
3449 ;; in cc. But if what's left is an empty list, use the original.
3450 (let* ((reply-to-list (rmail-dont-reply-to reply-to)))
3451 (if (string= reply-to-list "") reply-to reply-to-list))
3448 subject 3452 subject
3449 (rmail-make-in-reply-to-field from date message-id) 3453 (rmail-make-in-reply-to-field from date message-id)
3450 (if just-sender 3454 (if just-sender
3451 nil 3455 nil
3452 ;; mail-strip-quoted-names is NOT necessary for rmail-dont-reply-to 3456 ;; mail-strip-quoted-names is NOT necessary for rmail-dont-reply-to