From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/11118 Path: main.gmane.org!not-for-mail From: Sudish Joseph Newsgroups: gmane.emacs.gnus.general Subject: Re: Summary format question Date: 27 May 1997 14:10:04 -0400 Message-ID: References: <2xoh9x9dq0.fsf@ccae-sv.inesc.pt> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035150882 28384 80.91.224.250 (20 Oct 2002 21:54:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:54:42 +0000 (UTC) Return-Path: Original-Received: from sandy.calag.com (root@sandy [206.190.83.128]) by altair.xemacs.org (8.8.5/8.8.5) with ESMTP id NAA12301 for ; Tue, 27 May 1997 13:13:04 -0700 Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by sandy.calag.com (8.8.5/8.8.5) with ESMTP id NAA24125 for ; Tue, 27 May 1997 13:12:54 -0700 Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by xemacs.org (8.8.5/8.8.5) with SMTP id PAA11338 for ; Tue, 27 May 1997 15:12:15 -0500 (CDT) Original-Received: from atreides.eng.mindspring.net (atreides.eng.mindspring.net [207.69.183.11]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Tue, 27 May 1997 20:10:36 +0200 Original-Received: (qmail 20234 invoked by uid 52477); 27 May 1997 18:10:04 -0000 Original-To: ding@ifi.uio.no In-Reply-To: Nelson Jose dos Santos Ferreira's message of 27 May 1997 15:44:23 +0100 X-Mailer: Gnus v5.4.52/XEmacs 20.2 Original-Lines: 24 Original-Xref: altair.xemacs.org dgnus-list:1508 Xref: main.gmane.org gmane.emacs.gnus.general:11118 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:11118 Nelson Jose dos Santos Ferreira writes: > 2. Make the scan-mail daemon handler update the group buffer. (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))))) > BTW, is there a function to extract the value of a specified header ? > I want to use the %u specifier to extract the From, check for one of my > addresses. If it's me output -> and the contents of the To: header. > I'd like to do the same translation as the %a does. The mail-header-* macros in nnheader.el should be able pick apart the header passed to a gnus-user-format-function-. Don't forget to byte-compile anything you do with %u or summary generation might slow down drastically. -Sudish