From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/51990 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: Plugging the agent asks many questions Date: Wed, 30 Apr 2003 08:06:40 -0500 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <84el3k30qu.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1051708007 15981 80.91.224.249 (30 Apr 2003 13:06:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 30 Apr 2003 13:06:47 +0000 (UTC) Original-X-From: ding-owner+M533@lists.math.uh.edu Wed Apr 30 15:06:46 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 19ArIL-00049d-00 for ; Wed, 30 Apr 2003 15:06:46 +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 19ArIb-0001OH-00; Wed, 30 Apr 2003 08:07:01 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19ArIV-0001OC-00 for ding@lists.math.uh.edu; Wed, 30 Apr 2003 08:06:55 -0500 Original-Received: (qmail 80128 invoked by alias); 30 Apr 2003 13:06:54 -0000 Original-Received: (qmail 80121 invoked from network); 30 Apr 2003 13:06:54 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by sclp3.sclp.com with SMTP; 30 Apr 2003 13:06:54 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 19ArQR-0006Zf-00 for ; Wed, 30 Apr 2003 15:15:07 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 29 Original-NNTP-Posting-Host: manchester-suites-iaf1047853.cust-rtr.ameritech.net Original-X-Trace: quimby.gnus.org 1051708507 25274 68.23.64.46 (30 Apr 2003 13:15:07 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 30 Apr 2003 13:15:07 GMT In-Reply-To: <84el3k30qu.fsf@lucy.is.informatik.uni-duisburg.de> (Kai =?iso-8859-1?q?Gro=DFjohann's?= message of "Wed, 30 Apr 2003 09:25:45 +0200") User-Agent: Gnus/5.09002 (Oort Gnus v0.20) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:rmD9Ur0W/ZLtEw1krMN4K3XTuMk= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:51990 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:51990 kai.grossjohann@gmx.net (Kai Großjohann) writes: > Starting today, hitting `J j' to plug Gnus asks me a lot of > questions: Switch server foo to online mode? (y/n) > > It didn't do that before, I think. It just plugged them servers. The stack trace is fairly thin so there's not much room to change the behavior. :). y-or-n-p("Switch nntp:news.aaaaa into online status? ") gnus-y-or-n-p("Switch nntp:news.aaaaa into online status? ") gnus-agent-go-online(ask) gnus-agent-toggle-plugged(t) * call-interactively(gnus-agent-toggle-plugged) Here's what you can do. Customize gnus-agent-go-online to t rather than 'ask. Here's what may have happened. I checked-in a fix to gnus-open-server. Sometime ago, I changed gnus-open-server to call nnagent-open-server when opening an offline server. Unfortunitely, that change resulted in gnus-open-server calling XXXX-open-server for each backend even though gnus-plugged was nil. That bug has now been fixed so that may explain the change in behavior when toggling between plugged/unplugged. Kevin