From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/46815 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Why does Gnus generates Lines: header in mail? Date: Sun, 29 Sep 2002 16:01:37 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1033308424 10751 127.0.0.1 (29 Sep 2002 14:07:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 29 Sep 2002 14:07:04 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17veit-0002nH-00 for ; Sun, 29 Sep 2002 16:07:03 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17vee5-0002Ob-00; Sun, 29 Sep 2002 09:02:05 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 29 Sep 2002 09:02:45 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id JAA22948 for ; Sun, 29 Sep 2002 09:02:34 -0500 (CDT) Original-Received: (qmail 29590 invoked by alias); 29 Sep 2002 14:01:46 -0000 Original-Received: (qmail 29585 invoked from network); 29 Sep 2002 14:01:45 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by gnus.org with SMTP; 29 Sep 2002 14:01:45 -0000 Original-Received: from h28n1c1o299.bredband.skanova.com (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.6/8.12.6) with ESMTP id g8TE1gn2019074 for ; Sun, 29 Sep 2002 16:01:43 +0200 Original-To: ding@gnus.org X-Hashcash: 0:020929:ding@gnus.org:9bd7858908c2fbe8 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.4 (Military Intelligence (RC1), i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:46815 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:46815 How about this patch? The Lines: header seems to be deprecated even for news in RFC1036bis. Also, shouldn't Gnus generate the In-Reply-To header in the message buffer when you press R or F? The References: header is generated. Possibly neither should be generated though (and people that want to see it can use `message-generate-headers-first'). Opinions? Index: message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 6.252 diff -u -p -u -w -r6.252 message.el --- message.el 2002/09/26 02:21:37 6.252 +++ message.el 2002/09/29 14:44:22 @@ -206,11 +206,11 @@ header, remove it from this list." :type '(repeat sexp)) (defcustom message-required-mail-headers - '(From Subject Date (optional . In-Reply-To) Message-ID Lines + '(From Subject Date (optional . In-Reply-To) Message-ID (optional . User-Agent)) "*Headers to be generated or prompted for when mailing a message. It is recommended that From, Date, To, Subject and Message-ID be -included. Organization, Lines and User-Agent are optional." +included. Organization and User-Agent are optional." :group 'message-mail :group 'message-headers :type '(repeat sexp))