Leonidas Tsampros <[email protected]> writes: > I have never faced the problem described in the subject again. Generally > doing a followup and yank (F) or wide reply and yank (S W) works for all > of the other mailing lists and groups I'm subscribed to.
I experience the same problem as you. I wonder why nobody else is complaining. This list seems not to set the reply-to header to [email protected]. So there is just the from-address of the author. Thus followup or reply just uses the address of the author instead of [email protected]. I fixed this for me using the posting styles. As I check for a couple of different email ids, I've defined this function to determine to-from context: (defun is-about-email-id-p ( is-about-pattern) "used in gnus-posting-style, check if it's about `pattern' email" (save-excursion (when (message-mail-p) (when (get-buffer gnus-article-buffer) (set-buffer gnus-article-buffer) (let ((toheader (message-fetch-field "to"))) (let ((fromheader (message-fetch-field "from"))) (or (and toheader (string-match is-about-pattern toheader)) (and fromheader (string-match is-about-pattern fromheader))) )))))) Which I then use in gnus-posting-styles to determine [email protected]: ((is-about-email-id-p "info-gnus-english@gnu\.org") (to "info-gnus-english@gnu\.org") (name "Rud1ger Sch1erz") (address "[email protected]") (organization "Joe Cool's Data Club") ) HTH, Rudiger _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
