From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84763 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: How to visit thread that corresponds to an entry in the summary mode? Date: Sun, 10 Aug 2014 11:01:02 +0800 Message-ID: <87fvh5vyj5.fsf@ericabrahamsen.net> References: <878umxxpji.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1407639472 19306 80.91.229.3 (10 Aug 2014 02:57:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 10 Aug 2014 02:57:52 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M33006@lists.math.uh.edu Sun Aug 10 04:57:45 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XGJKJ-0004TO-3J for ding-account@gmane.org; Sun, 10 Aug 2014 04:57:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1XGJJX-0006wD-Cj; Sat, 09 Aug 2014 21:56:55 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1XGJJW-0006w3-6G for ding@lists.math.uh.edu; Sat, 09 Aug 2014 21:56:54 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1XGJJU-0008P1-Sx for ding@lists.math.uh.edu; Sat, 09 Aug 2014 21:56:53 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1XGJJS-0006i7-TN for ding@gnus.org; Sun, 10 Aug 2014 04:56:50 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XGJJS-0003P7-Im for ding@gnus.org; Sun, 10 Aug 2014 04:56:50 +0200 Original-Received: from 222.128.165.253 ([222.128.165.253]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Aug 2014 04:56:50 +0200 Original-Received: from eric by 222.128.165.253 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Aug 2014 04:56:50 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 27 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 222.128.165.253 User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/24.4.50 (gnu/linux) Cancel-Lock: sha1:hkYkgQmIsA6gj8BSfJr5LKtNDTE= X-Spam-Score: -0.7 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84763 Archived-At: jenia.ivlev@gmail.com (jenia.ivlev) writes: > Hello: > > How do go to the thread that corresponds to an article in the summary > mode, "sent" folder lets say. Or "draft" folder and so on? > > Thanks in advance for your kind help and time. > Jenia You mean you have a group name, and a message-id, and you want to open a *Summary* buffer displaying the entire thread of which that message is a part? Or are you already on a message in the summary buffer, and you just want to show the whole thread? "A T" on a message in the summary buffer will show its whole thread. If you meant the latter, a bit like this would probably do it: (progn (gnus-select-group-with-message-id GROUP MESSAGE-ID) (gnus-summary-refer-thread)) What you do with that bit depends on how you're planning to use it. HTH, Eric