From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/43731 Path: quimby.gnus.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: Re: [Wishlist?] Removing the "nnfolder:"-prefix? Date: Sat, 02 Mar 2002 07:05:17 -0500 Message-ID: References: NNTP-Posting-Host: quimby2.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: quimby2.netfonds.no 1015071124 9539 195.204.10.66 (2 Mar 2002 12:12:04 GMT) X-Complaints-To: usenet@quimby2.netfonds.no NNTP-Posting-Date: 2 Mar 2002 12:12:04 GMT Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by quimby2.netfonds.no with esmtp (Exim 3.12 #1 (Debian)) id 16h8Mt-0002Tg-00; Sat, 02 Mar 2002 13:12:03 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16h8Ge-0004kf-00; Sat, 02 Mar 2002 06:05:36 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 02 Mar 2002 06:05:37 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id GAA11509 for ; Sat, 2 Mar 2002 06:05:26 -0600 (CST) Original-Received: (qmail 6536 invoked by alias); 2 Mar 2002 12:05:20 -0000 Original-Received: (qmail 6531 invoked from network); 2 Mar 2002 12:05:18 -0000 Original-Received: from mesquite.slip.cs.cmu.edu (HELO cinnamon.vanillaknot.com) (128.2.207.11) by gnus.org with SMTP; 2 Mar 2002 12:05:18 -0000 Original-Received: (from karl@localhost) by cinnamon.vanillaknot.com (8.11.6/8.11.6) id g22C5IS03202; Sat, 2 Mar 2002 07:05:18 -0500 Original-To: ding@gnus.org X-Face: "8-CgoYhiD_O!#(F%E=..0>QA_#WDy+]_XoAr)L]`-zjAc\d+nsFXq`=v_# =pVh#sP*K~j,0k9N}`E7jX"5+U?4/UIF1EE X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6 hR;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu In-Reply-To: (Jonas Steverud's message of "Sat, 02 Mar 2002 12:39:47 +0100") Original-Lines: 36 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: quimby.gnus.org gmane.emacs.gnus.general:43731 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:43731 Jonas Steverud writes: > Wouldn't it be nice if one didn't need to have prefixes like "nnfolder:" > in the Group-buffer? Yes, but it's next to impossible. If you read gnu.emacs.gnus, and you archive interesting bits of that group to nnfolder:gnu.emacs.gnus, obviously some mechanism is needed by which to differentiate them. > Is it possible to implement a way of getting Gnus to know where the > groups is coming from and getting rid of the (sort of) ad hoc method > of using the group name for that? I wouldn't call it /ad hoc/. If what concerns you is the visual ugliness of the full reference in *Group*, I suggest "%G" in gnus-group-line-format (instead of "%g"), which will cause all groups to display without their qualifiers. However, you will still have to reference secondary method groups with qualifiers. Also, depending on your mail /vs/ news predilections, you might find it useful to exchange primary-ness and secondary-ness: (setq gnus-select-method '(nnfolder "") gnus-secondary-select-methods '((nntp "news"))) However, be aware that this will have ramifications in any .gnus personalizations which depend on group name matching. E.g., you can no longer (string-match "^some.group" gnus-newsgroup-name) but will instead need to (string-match "^nntp\\+news:some.group" gnus-newsgroup-name) and conversely, what currently matches as "^nnfolder:" will need to operate without that prefix.