From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/1711 Path: news.gmane.org!not-for-mail From: klarlund@research.att.com (Nils Klarlund) Newsgroups: gmane.emacs.gnus.user Subject: GNUS, IMAP, and slowness (that should be easy fixable?) Date: 30 Dec 2002 07:46:36 -0800 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1138668401 12424 80.91.229.2 (31 Jan 2006 00:46:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:46:41 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:29:35 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.stanford.edu!postnews1.google.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: 135.207.19.117 Original-X-Trace: posting.google.com 1041263197 2082 127.0.0.1 (30 Dec 2002 15:46:37 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: 30 Dec 2002 15:46:37 GMT Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:1851 Original-Lines: 46 X-Gnus-Article-Number: 1851 Tue Jan 17 17:29:35 2006 Xref: news.gmane.org gmane.emacs.gnus.user:1711 Archived-At: I have used GNUS as a mail reader for a couple of years, since it allows me to work within Emacs, where I try to "live". (I can work almost hands-free within Emacs.) As such, I am very happy with it. There is one bothersome problem, which I have not been able to fix. I do not believe that it is related to earlier postings in this group about IMAP support being slow. I would like to use GNUS in the way that standard mail readers work. In particular, they show all mail in the group (= mail folder), whether read or unread, and an operation check-mail updates the group in unit time, adding new mail (i.e. in time that is not proportional to the number of mail in the group, but a constant). In GNUS there are only two options for updating mail as far as I can tell: (gnus-summary-rescan-group t) which does the job except that the time it takes to execute this command is proportional to the size of the group with imap. (The time is spent fetching headers according to the message printed by GNUS.) The other option is (gnus-summary-rescan-group) which is much faster since it fetches the headers only for all unread mail (which happens to include new mail). This method is also deficient since it does not limit itself to new mail. Worse, and at least this should be fixable I would imagine, all unread mail in the group is now not shown anymore. This behavior is inconsistent with standard user interfaces of mail readers (and not workable in practice I believe). I would appreciate any help the GNUS specialists might be able to provide. /Nils PS: my cache settings are: (setq gnus-use-cache t) (setq gnus-cache-directory "c:/klarlund/Mail/cache/") (setq gnus-cache-enter-articles '(ticked dormant read unread)) (setq gnus-cache-remove-articles nil) (setq gnus-cacheable-groups "^nnimap")