From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/13713 Path: main.gmane.org!not-for-mail From: Felix Lee Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus keeps fetching read Articles from the Server Date: Sat, 24 Jan 1998 20:57:23 -0800 Sender: owner-ding@hpc.uh.edu Message-ID: <199801250455.UAA16928@smtp3.teleport.com> References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035153028 10686 80.91.224.250 (20 Oct 2002 22:30:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:30:28 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id VAA05074 for ; Sat, 24 Jan 1998 21:27:33 -0800 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by xemacs.org (8.8.5/8.8.5) with ESMTP id XAA01066 for ; Sat, 24 Jan 1998 23:25:15 -0600 (CST) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id XAN09031; Sat, 24 Jan 1998 23:35:10 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 24 Jan 1998 22:55:22 -0600 (CST) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id WAA05718 for ; Sat, 24 Jan 1998 22:55:15 -0600 (CST) Original-Received: (qmail 31174 invoked by uid 504); 25 Jan 1998 04:55:13 -0000 Original-Received: (qmail 31171 invoked from network); 25 Jan 1998 04:55:13 -0000 Original-Received: from smtp3.teleport.com (192.108.254.5) by claymore.vcinet.com with SMTP; 25 Jan 1998 04:55:12 -0000 Original-Received: from teleport.com (a48-pdx25-22.teleport.com [198.106.134.22]) by smtp3.teleport.com (8.8.7/8.7.3) with ESMTP id UAA16928 for ; Sat, 24 Jan 1998 20:55:10 -0800 (PST) Original-To: ding@gnus.org In-reply-to: Your message of 08 Jan 1998 07:12:29 GMT. Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:13713 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:13713 > [Synopsis] With gnus-asynchronous, gnus-keep-backlog and > gnus-use-cache all set Gnus still re-reads selected articles from the > server when they have previously been viewed with X u or MIME decoded. yup. I noticed this a while ago and didn't get around to tracking it down until now. the problem is, gnus gives articles to gnus-backlog only if it fetched the article directly. any articles that come out of gnus-async don't make it into the backlog. patch for qgnus 0.22: *** gnus-art.el 1998/01/25 04:52:19 1.1 --- gnus-art.el 1998/01/25 04:53:29 *************** *** 2451,2456 **** --- 2451,2459 ---- ;; Check asynchronous pre-fetch. ((gnus-async-request-fetched-article group article (current-buffer)) (gnus-async-prefetch-next group article gnus-summary-buffer) + (when gnus-keep-backlog + (gnus-backlog-enter-article + group article (current-buffer))) 'article) ;; Check the cache. ((and gnus-use-cache