From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29493 Path: main.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: the laborious bootstrap process Date: 13 Mar 2000 20:46:49 +0100 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 1035166153 3034 80.91.224.250 (21 Oct 2002 02:09:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:09:13 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id 04232D051F for ; Mon, 13 Mar 2000 14:51:11 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB01076; Mon, 13 Mar 2000 13:50:55 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 13 Mar 2000 13:49:57 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id NAA16063 for ; Mon, 13 Mar 2000 13:49:46 -0600 (CST) Original-Received: from viffer.metis.no (gran.metis.no [193.90.64.36]) by mailhost.sclp.com (Postfix) with ESMTP id D0A87D051E for ; Mon, 13 Mar 2000 14:49:52 -0500 (EST) Original-Received: (from sb@localhost) by viffer.metis.no (8.9.3/8.9.3) id UAA07060; Mon, 13 Mar 2000 20:49:42 +0100 Original-To: ding@gnus.org In-Reply-To: Karl Kleinpaste's message of "13 Mar 2000 10:48:38 -0500" User-Agent: Gnus/5.0804 (Gnus v5.8.4) XEmacs/20.4 (Emerald) Original-Lines: 22 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29493 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29493 >>>>> Karl Kleinpaste : > Darcy Brockbank writes: >> (2) I'd like to have it poll my mail server for new mail every >> five minutes or so, rather than having me do this manually. I >> can't seem to find anything to set this behaviour. > My choice, slurped out of gnu.emacs.gnus quite some time back, and > then modified to my personal taste: A simpler version is simply: ;; daemonical mail and news fetch (gnus-demon-add-rescan) This one fetches mail if Gnus is left alone for one hour. I guess the simplest setup to fetch mail every 5 minutes, would be something like this: (gnus-demon-add-handler 'gnus-demon-scan-mail 5 t) NB! This is not tested.