From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/42849 Path: main.gmane.org!not-for-mail From: =?iso-8859-1?q?Bj=F8rn?= Mork Newsgroups: gmane.emacs.gnus.general Subject: Re: Benchmarking Gnus Date: Thu, 31 Jan 2002 23:35:58 +0100 Organization: DoD Sender: owner-ding@hpc.uh.edu Message-ID: References: <87u1t2tr6y.fsf@bang.priv.no> <871yg6tfbp.fsf@bang.priv.no> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035178037 14409 80.91.224.250 (21 Oct 2002 05:27:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:27:17 +0000 (UTC) Return-Path: Original-Received: (qmail 10096 invoked from network); 31 Jan 2002 22:37:31 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 31 Jan 2002 22:37:31 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16WPpV-0001fE-00; Thu, 31 Jan 2002 16:37:17 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 31 Jan 2002 16:37:00 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id QAA02880 for ; Thu, 31 Jan 2002 16:36:03 -0600 (CST) Original-Received: (qmail 10053 invoked by alias); 31 Jan 2002 22:36:00 -0000 Original-Received: (qmail 10045 invoked from network); 31 Jan 2002 22:36:00 -0000 Original-Received: from ingebrigtsen.no (HELO quimby2.netfonds.no) (195.204.10.66) by gnus.org with SMTP; 31 Jan 2002 22:36:00 -0000 Original-Received: from news by quimby2.netfonds.no with local (Exim 3.12 #1 (Debian)) id 16WPt7-0003fI-00 for ; Thu, 31 Jan 2002 23:41:01 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 48 Original-NNTP-Posting-Host: c4s142h4.upc.chello.no Original-X-Trace: quimby2.netfonds.no 1012516861 13425 62.179.170.4 (31 Jan 2002 22:41:01 GMT) Original-X-Complaints-To: usenet@quimby2.netfonds.no Original-NNTP-Posting-Date: 31 Jan 2002 22:41:01 GMT User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.1 (i386-debian-linux-gnu) Cancel-Lock: sha1:zJQaLvAyrG2yj2FTrGI3v3tf0ow= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:42849 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:42849 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Steinar Bang writes: >>>>>> Bjørn Mork : > >> I believe this was fixed by larsi a week ago or so. Agent works more >> or less as expected for me at the moment. > > Maybe it's time to upgrade then? I saw some nnimap expiry problems > reported earlier. Have you seen any indications of this? Haven't noticed anything. What sort of problems? I am still running with the attached patch (provided by Simon, I think) to avoid problems with the combination nnimap, agent and expiry-target. Bjørn -- Man, I can't believe how sadistic you are. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=agent-expiry-fix.diff Index: lisp/gnus-int.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-int.el,v retrieving revision 6.9 diff -u -r6.9 gnus-int.el --- lisp/gnus-int.el 2002/01/11 02:36:58 6.9 +++ lisp/gnus-int.el 2002/01/31 22:38:29 @@ -514,9 +514,9 @@ (let ((mail-parse-charset message-default-charset)) (mail-encode-encoded-word-buffer))) (message-encode-message-body))) - (let ((func (car (or gnus-command-method - (gnus-find-method-for-group group))))) - (funcall (intern (format "%s-request-accept-article" func)) + (let ((gnus-command-method (or gnus-command-method + (gnus-find-method-for-group group)))) + (funcall (gnus-get-function gnus-command-method 'request-accept-article) (if (stringp group) (gnus-group-real-name group) group) (cadr gnus-command-method) last))) --=-=-=--