From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/14349 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.user Subject: Re: Today's articles/mails.. Date: Tue, 21 Dec 2010 11:28:54 +0100 Message-ID: <8762unzaft.fsf@member.fsf.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1292927375 779 80.91.229.12 (21 Dec 2010 10:29:35 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 21 Dec 2010 10:29:35 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Tue Dec 21 11:29:32 2010 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.69) (envelope-from ) id 1PUzTF-0005gt-Bt for gegu-info-gnus-english@m.gmane.org; Tue, 21 Dec 2010 11:29:30 +0100 Original-Received: from localhost ([127.0.0.1]:49995 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PUzT9-0005jD-So for gegu-info-gnus-english@m.gmane.org; Tue, 21 Dec 2010 05:29:23 -0500 Original-Received: from [140.186.70.92] (port=40328 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PUzT2-0005iw-EX for info-gnus-english@gnu.org; Tue, 21 Dec 2010 05:29:21 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PUzSt-0000Rd-Qs for info-gnus-english@gnu.org; Tue, 21 Dec 2010 05:29:08 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:58251) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PUzSt-0000RM-Jx for info-gnus-english@gnu.org; Tue, 21 Dec 2010 05:29:07 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PUzSr-0005aA-DF for info-gnus-english@gnu.org; Tue, 21 Dec 2010 11:29:05 +0100 Original-Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Dec 2010 11:29:05 +0100 Original-Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Dec 2010 11:29:05 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 53 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: tsdh.uni-koblenz.de User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:DQD2Td3JRADm0oCiuhLRWyImveg= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) 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:14349 Archived-At: bgmrao@gmail.com writes: Hi Madhu, > How do I restrict the article buffer to "today's"/"This week's" > articles only; and include/exclude dormant/read articles? I think you mean the summary buffer, right? ,----[ (info "(gnus)Limiting") ] | `/ t' | Ask for a number and then limit the summary buffer to articles | older than (or equal to) that number of days | (`gnus-summary-limit-to-age'). If given a prefix, limit to | articles younger than that number of days. `---- So in your case, `C-u 7 / t' would limit the current summary to messages from the last week. ,----[ (info "(gnus)Limiting") ] | `/ m' | Ask for a mark and then limit to all articles that have been marked | with that mark (`gnus-summary-limit-to-marks'). `---- ,----[ C-h f gnus-summary-limit-to-marks RET ] | gnus-summary-limit-to-marks is an interactive compiled Lisp function in | `gnus-sum.el'. | | (gnus-summary-limit-to-marks MARKS &optional REVERSE) | | Limit the summary buffer to articles that are marked with MARKS (e.g. "DK"). | If REVERSE (the prefix), limit the summary buffer to articles that are | not marked with MARKS. MARKS can either be a string of marks or a | list of marks. | Returns how many articles were removed. `---- So `/ m !? RET' would limit to ticked and dormant articles, `C-u / m !?' would limit to articles not marked ticked and dormant. To remove the last limitation, use ,----[ (info "(gnus)Limiting") ] | `/ w' | Pop the previous limit off the stack and restore it | (`gnus-summary-pop-limit'). If given a prefix, pop all limits off | the stack. `---- HTH, Tassilo