From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52312 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Server name included in name of groups from gnus-select-method Date: Mon, 05 May 2003 17:04:17 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1052147235 6498 80.91.224.249 (5 May 2003 15:07:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 5 May 2003 15:07:15 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M858@lists.math.uh.edu Mon May 05 17:07:09 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19ChUk-0001OP-00 for ; Mon, 05 May 2003 17:03:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19ChVy-00009n-00; Mon, 05 May 2003 10:04:26 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19ChVu-00009i-00 for ding@lists.math.uh.edu; Mon, 05 May 2003 10:04:22 -0500 Original-Received: (qmail 11465 invoked by alias); 5 May 2003 15:04:22 -0000 Original-Received: (qmail 11460 invoked from network); 5 May 2003 15:04:21 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by sclp3.sclp.com with SMTP; 5 May 2003 15:04:21 -0000 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) by yxa.extundo.com (8.12.9/8.12.9) with ESMTP id h45F4HbT012734; Mon, 5 May 2003 17:04:17 +0200 Original-To: replies@Frank-Schmitt.net Mail-Copies-To: nobody X-Payment: hashcash 1.2 0:030505:replies@Frank-Schmitt.net:438dc9f35493358a X-Hashcash: 0:030505:replies@Frank-Schmitt.net:438dc9f35493358a X-Payment: hashcash 1.2 0:030505:ding@gnus.org:fd302d369952cbfd X-Hashcash: 0:030505:ding@gnus.org:fd302d369952cbfd In-Reply-To: (Frank Schmitt's message of "Mon, 05 May 2003 09:42:19 +0200") User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/20.7 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52312 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52312 Frank Schmitt writes: > I'm absolutely sure. I hit F to find new groups on my local news server > and got the message "one group arrived", then I tried to U name.of.group > but Gnus told me "no match". Then I entered server buffer, hit with > point over the server (my only nntp server, no ssh connection) and all > old groups were shown with the correct names, only the new one had the > nntp+127.0.0.1: prefix. There was a change to gnus-group-prefixed-name recently, maybe you can try to revert that patch, or try the patch below. Index: gnus.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus.el,v retrieving revision 6.181 diff -u -p -u -w -r6.181 gnus.el --- gnus.el 3 May 2003 16:47:18 -0000 6.181 +++ gnus.el 5 May 2003 15:04:48 -0000 @@ -3188,6 +3188,7 @@ server is native)." (setq method (gnus-server-to-method method))) (if (or (not method) (and (not full) (gnus-server-equal method "native")) + (and (not full) (gnus-server-equal method gnus-select-method)) ;;;!!! This might not be right. We'll see... ;(string-match ":" group) )