From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/22880 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: p0.84: Difference in use of "message/rfc822" content type Date: 04 May 1999 13:29:06 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035160719 31620 80.91.224.250 (21 Oct 2002 00:38:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:38:39 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA23448 for ; Tue, 4 May 1999 13:35:04 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id MAB19834; Tue, 4 May 1999 12:30:50 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 04 May 1999 12:30:48 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id MAA06413 for ; Tue, 4 May 1999 12:30:33 -0500 (CDT) Original-Received: from beaver.jprc.com (BEAVER.JPRC.COM [207.86.147.217]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA23375 for ; Tue, 4 May 1999 13:30:21 -0400 (EDT) Original-Received: (from karl@localhost) by beaver.jprc.com (8.8.7/8.8.7) id NAA18686; Tue, 4 May 1999 13:29:07 -0400 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6h R;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu Original-Lines: 51 User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) XEmacs/21.2(beta13) (Demeter) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:22880 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:22880 When I use gnus-summary-mail-forward (`S o m'), Gnus manufactures a message buffer containing a Content-Type: message/rfc822. ^ note When I just now replied to some other mail and also wanted to include yet another item of mail, I used `C-c C-a', and when offered the content-type prompt, Gnus auto-completed on message/rfc-822. ^ note I believe that the latter version is incorrect, so that the 5 occurrences of that string in mailcap.el need to be changed: --- mailcap.el.~1~ Tue May 4 13:24:24 1999 +++ mailcap.el Tue May 4 13:23:53 1999 @@ -133,22 +133,22 @@ (viewer . mm-view-message) (test . (and (featurep 'gnus) (gnus-alive-p))) - (type . "message/rfc-822")) + (type . "message/rfc822")) ("rfc-*822" (viewer . vm-mode) (test . (fboundp 'vm-mode)) - (type . "message/rfc-822")) + (type . "message/rfc822")) ("rfc-*822" (viewer . w3-mode) (test . (fboundp 'w3-mode)) - (type . "message/rfc-822")) + (type . "message/rfc822")) ("rfc-*822" (viewer . view-mode) (test . (fboundp 'view-mode)) - (type . "message/rfc-822")) + (type . "message/rfc822")) ("rfc-*822" (viewer . fundamental-mode) - (type . "message/rfc-822"))) + (type . "message/rfc822"))) ("image" ("x-xwd" (viewer . "xwud -in %s") Alternatively, if "with dash" is correct, then the occurrences of "rfc822" in message.el, mm-{en,de}code.el, and nndoc.el need to be changed. If both are acceptable, then at least nndoc.el needs to be changed to make the detecting regexp general to both forms. --karl