From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/18177 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: Re: new NOV stuff in p0.40 Date: 25 Oct 1998 21:15:25 -500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035156747 4804 80.91.224.250 (20 Oct 2002 23:32:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:32:27 +0000 (UTC) Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id VAA08684 for ; Sun, 25 Oct 1998 21:16:47 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id UAB27449; Sun, 25 Oct 1998 20:16:33 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 25 Oct 1998 20:16:19 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id UAA14201 for ; Sun, 25 Oct 1998 20:16:10 -0600 (CST) Original-Received: from pocari-sweat.jprc.com (POCARI-SWEAT.JPRC.COM [207.86.147.217]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id VAA08653 for ; Sun, 25 Oct 1998 21:16:05 -0500 (EST) Original-Received: (from karl@localhost) by pocari-sweat.jprc.com (8.8.7/8.8.7) id VAA15878; Sun, 25 Oct 1998 21:15:25 -0500 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6h R;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu In-Reply-To: Karl Kleinpaste's message of "25 Oct 1998 20:40:17 -500" Original-Lines: 62 User-Agent: Gnus/5.070034 (Pterodactyl Gnus v0.34) XEmacs/20.4 (Emerald) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:18177 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:18177 >> You have to use the %f spec to get to-or-newsgroup-or-from: >> (setq gnus-summary-line-format >> "%U%R%z%I%(%[%4L: %-20,20f%]%) %s\n") > Ah, that's what I missed. I hack my summary format, using > gnus-select-group-hook, and didn't notice that. Thanx for the clue. This doesn't appear to be working, or I'm misusing it somehow. Same scenario as before, self-mailing to an alias. Gcc'd and delivered copies' .overview lines: 329 'nother test Karl Kleinpaste 25 Oct 1998 20:49:30 -500 12 1 Xref: mesquite.charcoal.com personal.karl:329 Keywords: basic,testing,hmmm To: usenet@charcoal.com 330 'nother test Karl Kleinpaste 25 Oct 1998 20:49:30 -500 13 2 Xref: mesquite.charcoal.com personal.karl:330 Keywords: basic,testing,hmmm To: usenet@charcoal.com Asking about the format variable rewards me with: `gnus-summary-line-format' is a variable declared in Lisp. Value: "%U%R%z%I%(%[%4L: %-20,20f%]%) %s\n" This value is specific to the current buffer. Its default-value is "%U%R%z%I%(%[%4L: %-20,20n%]%) %s\n" (The doc string needs to be updated to reflect new default, BTW.) Address string seems to be set properly: (setq gnus-ignored-from-addresses "karl@charcoal\\.com\\|karl@jprc\\.com") But it still displays my own name: : : 'nother test R + [ 1: Karl Kleinpaste ] R + [ 2: Karl Kleinpaste ] It's hook-selected: (setq gnus-select-group-hook (function (lambda () ;; Ignore From: in summary for certain groups. (cond ((or (string-match "clari." gnus-newsgroup-name)) (setq gnus-summary-line-format "%U%R%z%I%(%[%4L: %-6,6n%]%) %s\n")) ((or (string-match "comp.sources" gnus-newsgroup-name) (string-match "dow-jones" gnus-newsgroup-name) (string-match "comp.internet.net-happening" gnus-newsgroup-name)) (setq gnus-summary-line-format "%U%R%z%I%(%[%4L%]%) %s\n")) (t (setq gnus-summary-line-format "%U%R%z%I%(%[%4L: %-20,20f%]%) %s\n"))) ; p0.40+ %f from/to/ng. ;; Put full newsgroup name in summary mode line for nnir. (cond ((string-match "nnir:" gnus-newsgroup-name) (setq gnus-summary-mode-line-format "Gnus: %G [%A] %Z")) (t (setq gnus-summary-mode-line-format "Gnus: %g [%A] %Z"))) ))) Ideas?