From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63015 Path: news.gmane.org!not-for-mail From: Max Froumentin Newsgroups: gmane.emacs.gnus.general Subject: Re: slow PGP in No Gnus v0.4 Date: Tue, 25 Apr 2006 14:02:21 +0100 Organization: none Message-ID: <871wvl95b6.fsf@lapin-bleu.net> References: <871wvtbzwn.fsf@lapin-bleu.net> <87wtdft96c.fsf@lapin-bleu.net> <87d5f6kjcc.fsf@w3.org> <9eslo2alzk.fsf@gowron.rz-berlin.mpg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1145970470 28530 80.91.229.2 (25 Apr 2006 13:07:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 25 Apr 2006 13:07:50 +0000 (UTC) Original-X-From: ding-owner+m11542@lists.math.uh.edu Tue Apr 25 15:07:43 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FYNGO-0000lg-24 for ding-account@gmane.org; Tue, 25 Apr 2006 15:07:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1FYNGE-0005KI-00; Tue, 25 Apr 2006 08:07:22 -0500 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FYNCo-0005KC-00 for ding@lists.math.uh.edu; Tue, 25 Apr 2006 08:03:50 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1FYNCm-0007V7-TN for ding@lists.math.uh.edu; Tue, 25 Apr 2006 08:03:50 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FYNCl-0005ZP-00 for ; Tue, 25 Apr 2006 15:03:47 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FYNC7-00080B-Vc for ding@gnus.org; Tue, 25 Apr 2006 15:03:08 +0200 Original-Received: from dhcp-05.ilrt.bris.ac.uk ([137.222.34.205]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Apr 2006 15:03:07 +0200 Original-Received: from max by dhcp-05.ilrt.bris.ac.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Apr 2006 15:03:07 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 35 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: dhcp-05.ilrt.bris.ac.uk User-Agent: Gnus/5.110005 (No Gnus v0.5) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:YQXX5gqOkhYiA/0a0gsz/4TcaRQ= X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:63015 Archived-At: Jochen Küpper writes: > Max Froumentin writes: >> In fact, unless I've missed something, the current behaviour defeats >> the purpose of (setq mm-verify-option 'always), since it doesn't >> show the result of the verification. > What do you mean. Your last message showed the button for me right > away. That's bizarre. I've tried on a completely uncustomised emacs/gnus, apart from (setq mm-verify-option 'always), and I get the same result: by default, when a PGP-signed article is displayed, gnus verifies the signature but doesn't show the button. Only if you verify interactively with gnus-summary-force-security-verify-or-decrypt does it show it. The code confirms this: gnus-buttonized-mime-types is nil, and so gnus-mime-display-security doesn't display the button. Whereas gnus-summary-force-verify-and-decrypt sets gnus-buttonized-mime-types to ("multipart/signed" "multipart/encrypted") before calling gnus-mime-display-security. Indeed, the documentation for gnus-buttonized-mime-types says "To see e.g. security buttons you could set this to `(\"multipart/signed\")'." When I do that it works... So I'll restate my "defeats the purpose" statement: setting (setq mm-verify-option 'always) is useless if you don't set (setq gnus-buttonized-mime-types '("multipart/signed")) as well. Max.