From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/55144 Path: main.gmane.org!not-for-mail From: James Leifer Newsgroups: gmane.emacs.gnus.general Subject: Re: One recipient per line Date: Mon, 08 Dec 2003 10:12:51 +0100 Sender: ding-owner@lists.math.uh.edu Message-ID: References: Reply-To: James Leifer NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1070874789 6002 80.91.224.253 (8 Dec 2003 09:13:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 8 Dec 2003 09:13:09 +0000 (UTC) Original-X-From: ding-owner+M3684@lists.math.uh.edu Mon Dec 08 10:13:07 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ATHRz-0002vF-00 for ; Mon, 08 Dec 2003 10:13:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1ATHRr-0004Hz-00; Mon, 08 Dec 2003 03:12:59 -0600 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1ATHRn-0004Hu-00 for ding@lists.math.uh.edu; Mon, 08 Dec 2003 03:12:55 -0600 Original-Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by justine.libertine.org (Postfix) with ESMTP id 17A0E3A0043 for ; Mon, 8 Dec 2003 03:12:54 -0600 (CST) Original-Received: from muscadet.inria.fr (muscadet.inria.fr [128.93.8.12]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id hB89Cqr21355 for ; Mon, 8 Dec 2003 10:12:52 +0100 (MET) Original-Received: by muscadet.inria.fr (Postfix, from userid 11404) id 8BDE67A5A; Mon, 8 Dec 2003 10:12:51 +0100 (CET) Original-To: ding@gnus.org In-Reply-To: (Andrew Korty's message of "Sat, 06 Dec 2003 17:21:18 -0500") User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:55144 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:55144 Andrew Korty writes: > Greetings. Is there a configuration option to make message.el put no > more than one recipient per line in the header when I reply to a > message? Just off the top of my head, it probably would be easy to write a little function that * narrows to the To, BCC, and CC fields (others?) * searches and replaces the space separators between run-on email addresses by a newline The second requires care: you can't just search for , * since there may be commas lurking inside quotes or inside the email addresses themselves. I guess there are regexps lurking inside the gnus or message codebase for identifying the boundaries between email addresses which you could reuse. You could then bind this wonderful function to M-q, which currently does nothing useful in the headers... Good luck! -James