From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58401 Path: main.gmane.org!not-for-mail From: Jorge Godoy Newsgroups: gmane.emacs.gnus.general Subject: Configuring gnus to verify inline PGP/GPG signatures Date: Sun, 05 Sep 2004 11:03:50 -0300 Organization: Particular Sender: ding-owner@lists.math.uh.edu Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1094393287 25482 80.91.224.253 (5 Sep 2004 14:08:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 5 Sep 2004 14:08:07 +0000 (UTC) Original-X-From: ding-owner+M6943@lists.math.uh.edu Sun Sep 05 16:07:57 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C3xgT-0007XX-00 for ; Sun, 05 Sep 2004 16:07:57 +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 1C3xe3-0001cr-00; Sun, 05 Sep 2004 09:05:27 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1C3xdv-0001cl-00 for ding@lists.math.uh.edu; Sun, 05 Sep 2004 09:05:19 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1C3xds-0006dF-Ip for ding@lists.math.uh.edu; Sun, 05 Sep 2004 09:05:16 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by justine.libertine.org (Postfix) with ESMTP id 40E773A004A for ; Sun, 5 Sep 2004 09:05:13 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1C3xdn-00014a-00 for ; Sun, 05 Sep 2004 16:05:11 +0200 Original-Received: from 200-138-100-233.ctame7044.dsl.brasiltelecom.net.br ([200.138.100.233]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Sep 2004 16:05:11 +0200 Original-Received: from godoy by 200-138-100-233.ctame7044.dsl.brasiltelecom.net.br with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Sep 2004 16:05:11 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 42 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 200-138-100-233.ctame7044.dsl.brasiltelecom.net.br X-URL: http://www.g2ctech.com/ User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:degfEYu88XGGiTYt6LnWw5kycFw= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58401 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58401 Hi! Is there any way to make Gnus verify inline signatures as it does for MIME? I have a mess on my ~/.gnus to handle crypto stuff: ====================================================================== ;;; Crypto (require 'pgg) ; Tells Gnus to inline the part (eval-after-load "mm-decode" '(add-to-list 'mm-inlined-types "application/pgp$")) ; Tells Gnus how to display the part when it is requested (eval-after-load "mm-decode" '(add-to-list 'mm-inline-media-tests '("application/pgp$" mm-inline-text identity))) ; Tell Gnus not to wait for a request, just display the thing ; straight away. (eval-after-load "mm-decode" '(add-to-list 'mm-automatic-display "application/pgp$")) ; But don't display the signatures, please. (eval-after-load "mm-decode" (quote (setq mm-automatic-display (remove "application/pgp-signature" mm-automatic-display)))) (load-library "mailcrypt") (mc-setversion "gpg") (setq mm-verify-option 'known) (setq mm-decrypt-option 'known) ====================================================================== Thanks for any information on how to make it automatic too. Be seeing you, -- Godoy.