From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9424 Path: main.gmane.org!not-for-mail From: Paul Stodghill Newsgroups: gmane.emacs.gnus.general Subject: Re: PGP verifying NoCeM messages Date: 15 Jan 1997 09:58:31 -0500 Sender: stodghil@CS.Cornell.EDU Message-ID: References: <3058.853337663@splat.niehs.nih.gov> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.100) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035149452 18367 80.91.224.250 (20 Oct 2002 21:30:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:30:52 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id HAA23250 for ; Wed, 15 Jan 1997 07:24:50 -0800 Original-Received: from simon.cs.cornell.edu (SIMON.CS.CORNELL.EDU [128.84.154.10]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 15 Jan 1997 15:58:37 +0100 Original-Received: from cloyd.cs.cornell.edu (CLOYD.CS.CORNELL.EDU [128.84.227.15]) by simon.cs.cornell.edu (8.8.4/8.8.4/R-1.7) with ESMTP id JAA24324 for ; Wed, 15 Jan 1997 09:58:36 -0500 (EST) Original-Received: from hoho.cs.cornell.edu (HOHO.CS.CORNELL.EDU [128.84.211.72]) by cloyd.cs.cornell.edu (8.8.4/8.8.4/M-1.8) with ESMTP id JAA00422 for ; Wed, 15 Jan 1997 09:58:34 -0500 (EST) Original-Received: (from stodghil@localhost) by hoho.cs.cornell.edu (8.8.4/8.8.4/C-1.2) id JAA21915; Wed, 15 Jan 1997 09:58:32 -0500 (EST) Original-To: ding@ifi.uio.no In-Reply-To: "Lance A. Brown"'s message of Wed, 15 Jan 1997 09:14:23 -0500 Original-Lines: 32 X-Mailer: Red Gnus v0.80/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:9424 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9424 >>>>> "Lance" == Lance A Brown writes: Lance> My concern now is that there are a LOT of NoCeM messages waiting Lance> to be processed in the morning and it often take 5+ minutes for Lance> all the PGP verification to occur. This is on an R4000 100Mhz Lance> SGI Indy. Is there a significant risk of NoCeM spoofing? If you can leave yourself logged in overnight, I _strongly_ recommend using the demon for doing stuff like this when your Emacs is idle. Here's what I have in my .gnus: (gnus-demon-add-nocem) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Redefine some functions from gnus-demon.el ;; 1 min idle time isn't enough. Wait for 5 mins. (defun gnus-demon-add-nocem () "Add daemonic NoCeM handling to Gnus." (gnus-demon-add-handler 'gnus-demon-scan-nocem 60 5)) ;; Don't try to fetch pgp keys when verifying in the demon. ;; Emacs is idle! There's noone to answer Mailcrypt's prompts! (defun gnus-demon-scan-nocem () "Scan NoCeM groups for NoCeM messages." (save-window-excursion (let ((mc-pgp-always-fetch 'never)) (gnus-nocem-scan-groups)))) -- Paul Stodghill http://www.cs.cornell.edu/home/stodghil/home.html