From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50958 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Verifying inline gpg signatures Date: Fri, 21 Mar 2003 20:58:23 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1048276754 31078 80.91.224.249 (21 Mar 2003 19:59:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 21 Mar 2003 19:59:14 +0000 (UTC) Original-X-From: owner-ding@hpc.uh.edu Fri Mar 21 20:59:12 2003 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 18wSfY-00084y-00 for ; Fri, 21 Mar 2003 20:59:12 +0100 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 18wSf6-0002xU-00; Fri, 21 Mar 2003 13:58:44 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 21 Mar 2003 13:59:47 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id NAA18267 for ; Fri, 21 Mar 2003 13:59:33 -0600 (CST) Original-Received: (qmail 53670 invoked by alias); 21 Mar 2003 19:58:26 -0000 Original-Received: (qmail 53665 invoked from network); 21 Mar 2003 19:58:26 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by 66.230.238.6 with SMTP; 21 Mar 2003 19:58:26 -0000 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.8/8.12.8) with ESMTP id h2LJwNZG008547 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Fri, 21 Mar 2003 20:58:24 +0100 Original-To: ding@gnus.org Mail-Copies-To: nobody X-Payment: hashcash 1.2 0:030321:ding@gnus.org:a2261c085e2a3660 X-Hashcash: 0:030321:ding@gnus.org:a2261c085e2a3660 In-Reply-To: (Jesper Harder's message of "Thu, 13 Mar 2003 00:20:10 +0100") User-Agent: Gnus/5.090017 (Oort Gnus v0.17) Emacs/21.3.50 (gnu/linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50958 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50958 Jesper Harder writes: > Graham Murray writes: > >> Yes. Looking again at the messages which do not automatically >> verify, they are sent from Mozilla and have Content-Type: flowed. So >> that could be what is causing the problem. > > Yes, format=flowed is the problem -- I can reproduce that with f=f > messages produced by Gnus, too. Like this one. The reason is that `gnus-display-mime' says ... (let* ((handles (or ihandles (mm-dissect-buffer nil gnus-article-loose-mime) (and gnus-article-emulate-mime (mm-uu-dissect)))) ... which means that pre-MIME parsing (mm-uu-dissect) is only done when MIME isn't found. Apparently, a MIME message with only a text/plain part makes mm-dissect-buffer return nil, so it is treated as a pre-MIME message. So messages with CT parameters, such as format=flowed, or generally any non-trivial MIME message, is treated as a text part and mm-uu-dissect is never run. Perhaps mm-uu-dissect should be run on all text/plain parts? Or all text/.* parts? Opinions?