From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/10317 Path: news.gmane.org!not-for-mail From: David Newsgroups: gmane.emacs.gnus.user Subject: Re: Automatically authenticating at local imap server Date: Wed, 06 Feb 2008 12:56:23 +0100 Message-ID: References: <87fxw9lr6x.fsf@gaura-nitai.dyndns.org> <87odax2jzi.fsf@member.fsf.org> <874pco7bot.fsf@member.fsf.org> <861w7ruyme.fsf@lifelogs.com> <874pcncbfq.fsf@arcor.de> <871w7qtpea.fsf@member.fsf.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1202299047 12239 80.91.229.12 (6 Feb 2008 11:57:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 6 Feb 2008 11:57:27 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Wed Feb 06 12:57:46 2008 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JMitt-0000JS-2y for gegu-info-gnus-english@m.gmane.org; Wed, 06 Feb 2008 12:57:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JMitQ-0004o3-Oh for gegu-info-gnus-english@m.gmane.org; Wed, 06 Feb 2008 06:56:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JMitQ-0004nq-4Q for info-gnus-english@gnu.org; Wed, 06 Feb 2008 06:56:44 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JMitO-0004ne-4U for info-gnus-english@gnu.org; Wed, 06 Feb 2008 06:56:43 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JMitO-0004nb-1A for info-gnus-english@gnu.org; Wed, 06 Feb 2008 06:56:42 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JMitN-0000P0-O3 for info-gnus-english@gnu.org; Wed, 06 Feb 2008 06:56:41 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JMitF-0008SX-IP for info-gnus-english@gnu.org; Wed, 06 Feb 2008 11:56:33 +0000 Original-Received: from musil.physik3.gwdg.de ([134.76.92.62]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Feb 2008 11:56:33 +0000 Original-Received: from de_bb by musil.physik3.gwdg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Feb 2008 11:56:33 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 26 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: musil.physik3.gwdg.de User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:sUl3zE0yVVEBZdhtLt2qyKw2ic4= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:10317 Archived-At: Tassilo Horn writes: > One annoying thing is that it seems I must use (gnus-group-select-group > 1), if I provide 0 or nil, the group won't be selected. So you'll have > another message in the group after you press "M-^" in the nnmairix > group. Yes, but you can limit the summary buffer to the message containing the message-id. I'd suggest the following: (defun th-gnus-registry-select-article (message-id) (interactive "sMessage-ID: ") (let ((group-buffer (get-buffer gnus-group-buffer)) (group (gnus-registry-fetch-group message-id))) (pop-to-buffer group-buffer) (gnus-group-jump-to-group group) (gnus-summary-read-group group 1 t nil nil nil nil) (gnus-summary-refer-article message-id) (gnus-summary-limit-to-headers (format "message-id: %s" message-id)) (gnus-summary-select-article))) I'm currently working on the code that finds the original group based on the message file path. As soon as this is ready I'll post an update to nnmairix also containing the registry code. Thanks for your input, David