From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24391 Path: main.gmane.org!not-for-mail From: Sudish Joseph Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus and NoCeM. Date: 19 Jul 1999 13:53:10 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035161965 8458 80.91.224.250 (21 Oct 2002 00:59:25 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:59:25 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA16602 for ; Mon, 19 Jul 1999 14:00:10 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id MAB07750; Mon, 19 Jul 1999 12:55:41 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 19 Jul 1999 12:55:49 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id MAA22026 for ; Mon, 19 Jul 1999 12:55:40 -0500 (CDT) Original-Received: from ra.eng.mindspring.net (ra.eng.mindspring.net [207.69.192.184]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id NAA16223 for ; Mon, 19 Jul 1999 13:53:11 -0400 (EDT) Original-Received: (qmail 15412 invoked by uid 52477); 19 Jul 1999 17:53:10 -0000 Original-To: ding@gnus.org In-Reply-To: Colin Rafferty's message of "15 Jul 1999 16:27:19 -0400" Original-Lines: 44 User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) XEmacs/21.2 (Sumida) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24391 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24391 Colin Rafferty writes: >> One question, though. Do I still have to set gnus-use-nocem? > Yes. [ Apologies if I misunderstood the question. ] AFAIK, once the daemon is initialized, gnus-use-nocem can be nil, allowing purely asynch operation. Here's what I use: ;; NoCem (setq gnus-use-nocem t gnus-nocem-groups '("news.lists.filters" "news.admin.net-abuse.bulletins" "news.admin.net-abuse.announce")) ;; daemons (setq gnus-use-demon t) (gnus-demon-add-handler 'gnus-demon-scan-nocem 30 10) [...] (gnus-demon-init) (setq gnus-use-nocem nil) I'm almost certain that setting gnus-use-nocem to t before setting the nocem demon handler is unnecessary, but I haven't been motivated to see if I can remove it. The only other demon I use is this one, which causes incoming mail to be split when my XEmacs is otherwise idle. Very useful if you get lots of incoming mail and you do not want to wait on "g." Note that it assumes that all mail groups are level 2 or better. (gnus-demon-add-handler 'sj/gnus-demon-scan-news 20 5) (defun sj/gnus-demon-scan-news () (when (gnus-alive-p) (save-window-excursion (save-excursion (set-buffer gnus-group-buffer) (gnus-group-get-new-news 2))))) -- Sudish Joseph MindSpring Enterprises