From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/37532 Path: main.gmane.org!not-for-mail From: Amos Gouaux Newsgroups: gmane.emacs.gnus.general Subject: Re: Can't post-followup or post-forward in nnml groups Date: Sun, 05 Aug 2001 12:34:30 -0500 Sender: amos@utdallas.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035172930 14390 80.91.224.250 (21 Oct 2002 04:02:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:02:10 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 29634 invoked from network); 5 Aug 2001 17:35:22 -0000 Original-Received: from ns0.utdallas.edu (129.110.10.1) by gnus.org with SMTP; 5 Aug 2001 17:35:22 -0000 Original-Received: from spartacus.utdallas.edu (spartacus.utdallas.edu [129.110.3.11]) by ns0.utdallas.edu (Postfix) with ESMTP id 906901A0510 for ; Sun, 5 Aug 2001 12:35:06 -0500 (CDT) Original-To: ding@gnus.org In-Reply-To: (Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "Tue, 31 Jul 2001 19:51:13 +0200") User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Academic Rigor) Original-Lines: 28 Xref: main.gmane.org gmane.emacs.gnus.general:37532 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:37532 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit >>>>> On Tue, 31 Jul 2001 19:51:13 +0200, >>>>> Kai Großjohann (kg) writes: kg> You could mark the old messages as read... I do. Oh, I should point out that for nnimap groups I tend to have `(display . all)'. While I prefer to only show new articles for USENET groups, that's something I've never gotten used to with IMAP groups. Before setting `(display . all)', I tended to flag all my messages, which kinda defeats the usefulness of that feature. It also pissed off others using the same shared folders as me. ;-) kg> Or hit `9 9 =' or `1 1 1 =' which is easy to do, at least on a US kg> kbd. But `1 1 1 RET' should be easy on all keyboards. Yeah, but I was pondering something perhaps a bit more streamlined. As an experiment, I came up with the following cheesy hack. I suspect there's probably a better way already available in gnus, or maybe I ought to be better at adapting my mail management. Anyway, here it is such as it is.... -- Amos --=-=-= Content-Disposition: attachment; filename=gnus.el._diff Content-Description: gnus.el._diff *** gnus.el._orig Sun Aug 5 11:57:34 2001 --- gnus.el Sun Aug 5 12:11:43 2001 *************** *** 1229,1234 **** --- 1229,1243 ---- :group 'gnus-group-select :type 'integer) + (defcustom gnus-limit-to-x-articles nil + "*The maximum number of articles to display by default. If the number + number of articles in the group is less than this value, then just those + articles will be displayed. May override by manually specifying number + of articles to display. This may be useful if you utilize the group + parameter `(display . all)'." + :group 'gnus-group-select + :type 'integer) + (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix))) "*Non-nil means that the default name of a file to save articles in is the group name. If it's nil, the directory form of the group name is used instead. --=-=-= Content-Disposition: attachment; filename=gnus-sum._diff Content-Description: gnus-sum._diff *** gnus-sum.el._orig Sun Aug 5 11:37:37 2001 --- gnus-sum.el Sun Aug 5 12:09:12 2001 *************** *** 4611,4616 **** --- 4611,4620 ---- (t (condition-case () (cond + ((numberp gnus-limit-to-x-articles) + (if (> number gnus-limit-to-x-articles) + gnus-limit-to-x-articles + number)) ((and (or (<= scored marked) (= scored number)) (numberp gnus-large-newsgroup) (> number gnus-large-newsgroup)) --=-=-=--