From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9592 Path: main.gmane.org!not-for-mail From: "Lance A. Brown" Newsgroups: gmane.emacs.gnus.general Subject: NoCeM PGP keys tip Date: Thu, 23 Jan 1997 17:15:45 -0500 Message-ID: <19661.854057745@splat.niehs.nih.gov> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035149592 19363 80.91.224.250 (20 Oct 2002 21:33:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:33:12 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.5/8.8.5) with SMTP id OAA16409 for ; Thu, 23 Jan 1997 14:34:57 -0800 Original-Received: from splat.niehs.nih.gov (root@splat.niehs.nih.gov [157.98.9.238]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Thu, 23 Jan 1997 23:15:49 +0100 Original-Received: from splat.niehs.nih.gov (labrown@localhost [127.0.0.1]) by splat.niehs.nih.gov (8.8.5/8.8.5) with ESMTP id RAA19665 for ; Thu, 23 Jan 1997 17:15:46 -0500 (EST) Original-To: Ding Mailing List Xref: main.gmane.org gmane.emacs.gnus.general:9592 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9592 Greetings, I've just figured out how to make Gnus do PGP-verified NoCeM processing without having to put the NoCeM'ers public keys in my standard public key ring. This little bit of code does the trick. ;; NoCeM Stuff (require 'gnus-nocem) (defadvice gnus-nocem-scan-groups (around set-alternate-keyring activate) (setq mc-pgp-alternate-keyring (expand-file-name "~/.pgp/pub-nocem.pgp")) ad-do-it (setq mc-pgp-alternate-keyring nil)) --[Lance]