From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24205 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Coping with ELM and MIME Date: 13 Jul 1999 01:20:28 -0400 Organization: U of Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <2nk8s5yvkz.fsf@tiger.jia.vnet> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035161811 7428 80.91.224.250 (21 Oct 2002 00:56:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:56:51 +0000 (UTC) Cc: ding@gnus.org 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 BAA23763 for ; Tue, 13 Jul 1999 01:20:03 -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 AAB20411; Tue, 13 Jul 1999 00:19:40 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 13 Jul 1999 00:20:33 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id AAA28401 for ; Tue, 13 Jul 1999 00:20:22 -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 ESMTP id BAA23749 for ; Tue, 13 Jul 1999 01:19:21 -0400 (EDT) Original-Received: from heart.cs.rochester.edu (heart.cs.rochester.edu [192.5.53.109]) by cayuga.cs.rochester.edu (8.9.3/Q) with ESMTP id BAA10623; Tue, 13 Jul 1999 01:19:16 -0400 (EDT) Original-Received: (from zsh@localhost) by heart.cs.rochester.edu (8.9.3/8.9.3) id BAA01832; Tue, 13 Jul 1999 01:20:28 -0400 Original-To: pahe@daimi.au.dk (Peter von der =?iso-8859-1?q?Ah=E9?=) X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q Original-Lines: 33 User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) XEmacs/21.2 (Chiyoda) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24205 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24205 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit >>>>> "Ahe" == Peter von der Ahé writes: Ahe> Hi! Ahe> Pterodactyl Gnus v0.95 Ahe> Sometimes I get a mail from an ELM user with this header: Ahe> Content-Type: text Ahe> No Mime-version or CTE header, just CT with no charset. The problem Ahe> is that the mail really is in the iso-8859-1 charset. Chars like æ Ahe> are shown as \346. Ahe> Can I do anything besides editing the headers of the mail to get the Ahe> \346 shown as æ? Ahe> Cheers, Ahe> Peter The Content-Type is broken. This patch will fix broken CT. 1999-07-12 Shenghuo ZHU * gnus-art.el (article-decode-charset): Fix broken CT. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=95-zsh5.diff --- gnus-art.el 1999/07/13 03:02:39 1.1 +++ gnus-art.el 1999/07/13 05:18:37 @@ -1403,6 +1403,8 @@ (save-excursion (set-buffer gnus-summary-buffer) gnus-newsgroup-ignored-charsets)) buffer-read-only) + (if (and ctl (not (string-match "/" (car ctl)))) + (setq ctl nil)) (goto-char (point-max)) (widen) (forward-line 1) --=-=-= -- Shenghuo ZHU --=-=-=--