From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/11723 Path: main.gmane.org!not-for-mail From: Mark Boyns Newsgroups: gmane.emacs.gnus.general Subject: Re: Can Gnus show which folders have new mail? Date: 18 Jul 1997 14:13:25 -0700 Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035151389 32106 80.91.224.250 (20 Oct 2002 22:03:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:03:09 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.6/8.8.6) with ESMTP id PAA14926 for ; Fri, 18 Jul 1997 15:13:21 -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 RAA09623 for ; Fri, 18 Jul 1997 17:09:57 -0500 (CDT) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Fri, 18 Jul 1997 23:13:43 +0200 Original-Received: (qmail 19837 invoked by uid 504); 18 Jul 1997 21:13:42 -0000 Original-Received: (qmail 19834 invoked from network); 18 Jul 1997 21:13:40 -0000 Original-Received: from doctor.sdsu.edu (107@130.191.13.1) by claymore.vcinet.com with SMTP; 18 Jul 1997 21:13:38 -0000 Original-Received: (from boyns@localhost) by doctor.sdsu.edu (8.8.6/8.8.6) id OAA19611; Fri, 18 Jul 1997 14:13:26 -0700 (PDT) X-URL: http://www.sdsu.edu/~boyns/ Original-To: Eze Ogwuma Original-Lines: 27 Xref: main.gmane.org gmane.emacs.gnus.general:11723 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:11723 18 Jul 1997 zcaceog@ucl.ac.uk writes: > Hi, > > Is there a way to get Gnus to indicate which folders have new mail > messages? I use nnml to read my mail and when I type "g" I would like > to have Gnus highlight the folders that have got the new mail until I > enter them or exit Gnus. > > -- > Eze Ogwuma Use nnmail-new-mail-p in gnus-group-highlight. Here is mine: (setq gnus-group-highlight `(((nnmail-new-mail-p (gnus-group-real-name group)) . ,(custom-face-lookup "Gold" nil nil t nil nil)) ((string-match "announce" group) . ,(custom-face-lookup "Magenta" nil nil t nil nil)) ((> unread 200) . ,(custom-face-lookup "Red" nil nil t nil nil)) ((and (< level 3) (> unread 0)) . ,(custom-face-lookup "white" nil nil t nil nil)) ((and (< level 6) (> unread 0)) . ,(custom-face-lookup "white" nil nil t nil nil)) ((and (< level 10) (> unread 0)) . ,(custom-face-lookup "Salmon" nil nil t nil nil)) ))