From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17013 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: bug during gnus-summary-move-article Date: 12 Sep 1998 14:52:44 -400 Organization: Computer Dept of U Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <2nyarpcgeb.fsf@zsh.cs.rochester.edu> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035155789 31144 80.91.224.250 (20 Oct 2002 23:16:29 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:16:29 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA07290 for ; Sat, 12 Sep 1998 14:48:05 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id NAF17919; Sat, 12 Sep 1998 13:18:48 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 12 Sep 1998 13:47:26 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id NAA02834 for ; Sat, 12 Sep 1998 13:47:18 -0500 (CDT) Original-Received: from cayuga.cs.rochester.edu (cayuga.cs.rochester.edu [192.5.53.209]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id OAA07280 for ; Sat, 12 Sep 1998 14:47:11 -0400 (EDT) Original-Received: from slate.cs.rochester.edu (slate.cs.rochester.edu [192.5.53.101]) by cayuga.cs.rochester.edu (8.6.9/O) with ESMTP id OAA01922 for ; Sat, 12 Sep 1998 14:47:06 -0400 Original-Received: from brain.cs.rochester.edu (heart.cs.rochester.edu [192.5.53.109]) by slate.cs.rochester.edu (8.6.9/O) with ESMTP id OAA27838 for ; Sat, 12 Sep 1998 14:47:03 -0400 Original-Received: (from zsh@localhost) by brain.cs.rochester.edu (8.9.0/8.8.5) id OAA07031; Sat, 12 Sep 1998 14:52:49 -0400 Original-To: ding@gnus.org X-Attribution: ZSH Original-Lines: 42 User-Agent: Gnus/5.070029 (Pterodactyl Gnus v0.29) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:17013 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:17013 *Symptom: When gnus-summary-copy-article or gnus-summary-move-article an article with MULTIPART/MIXED, the article in new folder will not be decoded. *Reason: The headers of Content-Transfer-Encoding, Content-Type, Mime-Version are removed by message-remove-header in message-encode-message-body. The backtrack is * message-encode-message-body() gnus-request-accept-article("nnml:test" nil t) gnus-summary-move-article(nil nil nil copy) gnus-summary-copy-article(nil) * call-interactively(gnus-summary-copy-article) *Rx: Apply this patch --- gnus-sum.el.orig Sat Sep 12 03:15:36 1998 +++ gnus-sum.el Sat Sep 12 14:44:10 1998 @@ -6920,7 +6920,7 @@ gnus-newsgroup-name)) ; Server (list 'gnus-request-accept-article to-newsgroup (list 'quote select-method) - (not articles)) ; Accept form + (not articles) t) ; Accept form (not articles))) ; Only save nov last time ;; Copy the article. ((eq action 'copy) @@ -6928,7 +6928,7 @@ (set-buffer copy-buf) (when (gnus-request-article-this-buffer article gnus-newsgroup-name) (gnus-request-accept-article - to-newsgroup select-method (not articles))))) + to-newsgroup select-method (not articles) t)))) ;; Crosspost the article. ((eq action 'crosspost) (let ((xref (message-tokenize-header *Note: Is there a similar bug in gnus-summary-import-article? -- Shenghuo