Gnus development mailing list
 help / color / mirror / Atom feed
* Configuring gnus to verify inline PGP/GPG signatures
@ 2004-09-05 14:03 Jorge Godoy
  0 siblings, 0 replies; only message in thread
From: Jorge Godoy @ 2004-09-05 14:03 UTC (permalink / raw)



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.     <godoy@ieee.org>




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-09-05 14:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-05 14:03 Configuring gnus to verify inline PGP/GPG signatures Jorge Godoy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).