From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17327 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: pgnus-0.31: invoke external MIME stuff Date: 23 Sep 1998 12:10:58 -400 Organization: Computer Dept of U Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <5b90jastbh.fsf@gin.cs.rochester.edu> References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035156047 352 80.91.224.250 (20 Oct 2002 23:20:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:20:47 +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 MAA16390 for ; Wed, 23 Sep 1998 12:13:35 -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 KAF01428; Wed, 23 Sep 1998 10:44:29 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 23 Sep 1998 11:11:55 -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 LAA15388 for ; Wed, 23 Sep 1998 11:11:38 -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 MAA16339 for ; Wed, 23 Sep 1998 12:11:14 -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 MAA07215 for ; Wed, 23 Sep 1998 12:11:00 -0400 Original-Received: from gin.cs.rochester.edu (gin.cs.rochester.edu [192.5.53.190]) by slate.cs.rochester.edu (8.6.9/O) with ESMTP id MAA13194 for ; Wed, 23 Sep 1998 12:10:59 -0400 Original-Received: (from zsh@localhost) by gin.cs.rochester.edu (SMI-8.6/N++) id MAA19529; Wed, 23 Sep 1998 12:10:58 -0400 Original-To: ding@gnus.org X-Attribution: ZSH In-Reply-To: Kai Grossjohann's message of "23 Sep 1998 17:39:19 +0200" Original-Lines: 22 User-Agent: Gnus/5.070031 (Pterodactyl Gnus v0.31) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:17327 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:17327 >>>>> "KG" == Kai Grossjohann writes: KG> Sometimes, invokation of external programs for a part doesn't work KG> right. Apparently, the program is called for the base64-encoded KG> stuff rather than doing the base64-decoding first. Also, whenever KG> I hit RET to save a part into a file, the saved file is KG> base64-encoded. I also met this problem sometimes. I guess whether base64.el had been loaded when this happened. To verify my guess, check (featurep 'base64) when the stuff is not decoded. GNUS does not complain since the following codes are found in mm-decode-content-transfer-encoding. (condition-case () (base64-decode-region (point-min) (point-max)) (error nil)) Since I added (require 'base64) in .gnus, this bug never happened to me. -- Shenghuo