From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64051 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: where do messages from daemons go? Date: Fri, 01 Dec 2006 15:59:58 +0000 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: References: <87odqnbput.fsf@patagonia.sebmags.homelinux.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1164989031 16312 80.91.229.2 (1 Dec 2006 16:03:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 1 Dec 2006 16:03:51 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M12574@lists.math.uh.edu Fri Dec 01 17:03:47 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GqAp6-0004gf-Sn for ding-account@gmane.org; Fri, 01 Dec 2006 17:01:14 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1GqAod-00029X-6u; Fri, 01 Dec 2006 10:00:43 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1GqAob-000297-J9 for ding@lists.math.uh.edu; Fri, 01 Dec 2006 10:00:41 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1GqAoZ-0004IV-Gq for ding@lists.math.uh.edu; Fri, 01 Dec 2006 10:00:41 -0600 Original-Received: from fw01.cmbrmaks.akamai.com ([80.67.64.10] helo=smtp2.akamai.com) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1GqAoY-0000Dd-00 for ; Fri, 01 Dec 2006 17:00:38 +0100 Original-Received: from smtp2.akamai.com (vwall.kendall.corp.akamai.com [172.17.4.35]) by smtp2.akamai.com (8.13.8/8.12.10) with ESMTP id kB1G08tR028135 for ; Fri, 1 Dec 2006 11:00:09 -0500 (EST) Original-Received: from localhost.localdomain (dhcp-63-17.kendall.corp.akamai.com [172.16.36.21]) by smtp2.akamai.com (8.13.8/8.12.10) with ESMTP id kB1G079b028120; Fri, 1 Dec 2006 11:00:07 -0500 (EST) Original-To: "Sebastian P. Luque" X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Followup-To: "Sebastian P. Luque" , ding@gnus.org In-Reply-To: <87odqnbput.fsf@patagonia.sebmags.homelinux.org> (Sebastian P. Luque's message of "Fri\, 01 Dec 2006 09\:25\:14 -0600") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux) X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64051 Archived-At: On 1 Dec 2006, spluque@gmail.com wrote: > I had activated a daemon to collect mail for some time by including this > in ~/.gnus.el: > > > (gnus-demon-add-handler 'gnus-demon-scan-mail 720 nil) > > > and could verify that messages were being collected, as a short notice was > appearing briefly in the minibuffer and can see the corresponding files > with names like "Incoming160267qk" being created. However, the messages > do not appear in any of my groups, although a "%" appears next to the > groups were they should be. Entering those groups in any way doesn't show > the new messages. These messages do not seem to go to the bogus group > neither. Can somebody please point out what might be going on? Thanks in > advance. So M-g on a % group doesn't change the article counts? Check the *Messages* buffer, there may be some information there. Looks to me like gnus-demon-scan-mail in gnus-demon.el doesn't do anything unusual: (defun gnus-demon-scan-mail () (save-window-excursion (let ((servers gnus-opened-servers) server (nnmail-fetched-sources (list t))) (while (setq server (car (pop servers))) (and (gnus-check-backend-function 'request-scan (car server)) (or (gnus-server-opened server) (gnus-open-server server)) (gnus-request-scan nil server)))))) Ted