From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47033 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: gnus-uu-digest-(mail|post)-forward Date: Mon, 07 Oct 2002 17:07:56 +0900 Organization: Emacsen advocacy group Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1033978162 11828 127.0.0.1 (7 Oct 2002 08:09:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 7 Oct 2002 08:09:22 +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 17ySx6-00034d-00 for ; Mon, 07 Oct 2002 10:09:20 +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 17ySwH-0004Y8-00; Mon, 07 Oct 2002 03:08:29 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 07 Oct 2002 03:09:10 -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 DAA11721 for ; Mon, 7 Oct 2002 03:08:59 -0500 (CDT) Original-Received: (qmail 5760 invoked by alias); 7 Oct 2002 08:08:11 -0000 Original-Received: (qmail 5749 invoked from network); 7 Oct 2002 08:08:10 -0000 Original-Received: from unknown (HELO mars.web-hosting.com) (207.228.244.150) by gnus.org with SMTP; 7 Oct 2002 08:08:10 -0000 Original-Received: from localhost ([207.228.245.242]) by mars.web-hosting.com (8.11.1/8.11.1) with ESMTP id g97889115087 for ; Mon, 7 Oct 2002 04:08:10 -0400 (EDT) Original-To: ding@gnus.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.4 (Military Intelligence (RC2), sparc-sun-solaris2.6) X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( Cancel-Lock: sha1:vqcrTdJnGLrnWTxilaeVv8FpNXs= X-Hashcash: 021007:ding@gnus.org:ba6a3f84debf5096 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47033 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47033 --=-=-= Hi, Execution of the command gnus-uu-digest-(mail|post)-forward on a summary line will generate the form of a message body as follows: --8<---------------cut here---------------start------------->8--- < #multipart type=digest > < #part type=message/rfc822 > Subject: Topics Topics: subject string of an article < #mml type=message/rfc822 > header of an article body of an article --8<---------------cut here---------------end--------------->8--- There's a problem that the first `Topics' part may contain non- ascii subject string, and it will be sent without being encoded. Though I requested in the past and had changed the tag into #mml from #part, it has been returned after that. Probably, some another problems occurred. Then, I make a different proposal from last time. Isn't it possible to change the type of the first `Topics' part from `message/rfc822' to `text/plain'? If it is allowed, the code can be changed as follows and the problem will be solved. --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- gnus-uu.el~ 2002-04-12 11:46:57 +0000 +++ gnus-uu.el 2002-10-07 08:03:29 +0000 @@ -836,7 +836,7 @@ "Date: %s\nFrom: %s\nSubject: %s Digest\n\n" (current-time-string) name name)) (when (and message-forward-as-mime gnus-uu-digest-buffer) - (insert "< #part type=message/rfc822 >\nSubject: Topics\n\n")) + (insert "< #part type=text/plain >\n")) (insert "Topics:\n"))) (when (not (eq in-state 'end)) (setq state (list 'middle)))) --=-=-=--