From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/88833 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Problem with dovecot expiry to a different group/imap folder Date: Thu, 24 Oct 2019 23:11:49 +0200 Organization: Probably a good idea Message-ID: <86lft9kfvu.fsf@dod.no> References: <86tv7xkgns.fsf@dod.no> <86pnilkg77.fsf@dod.no> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="107839"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (windows-nt) To: ding@gnus.org Original-X-From: ding-owner+M37037@lists.math.uh.edu Thu Oct 24 23:10:18 2019 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iNkN5-000Rqe-1e for ding-account@gmane.org; Thu, 24 Oct 2019 23:10:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.92.3) (envelope-from ) id 1iNkMv-0000ah-Dt; Thu, 24 Oct 2019 16:10:05 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92.3) (envelope-from ) id 1iNkMs-0000Y1-Hc for ding@lists.math.uh.edu; Thu, 24 Oct 2019 16:10:02 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92.3) (envelope-from ) id 1iNkMr-00074L-5W for ding@lists.math.uh.edu; Thu, 24 Oct 2019 16:10:02 -0500 Original-Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226] helo=blaine.gmane.org) by quimby.gnus.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iNkMl-0006ex-WB for ding@gnus.org; Thu, 24 Oct 2019 23:09:59 +0200 Original-Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iNkMj-000RNR-KZ for ding@gnus.org; Thu, 24 Oct 2019 23:09:53 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Mail-Copies-To: never Cancel-Lock: sha1:jIFDOkRopUy2Dntut1vmQzvnNjw= List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:88833 Archived-At: >>>>> Steinar Bang : >>>>> Steinar Bang : >> I seem to remember that there was an issue with nnimap expiry to a >> different group when the server is dovecot. >> But I can't remember what the issue was (something to do with the date >> of the moved message that would get the date of the move instead of the >> date the original message was received). > This was the issue: > commit d5427e71da28856c5e43396a37ffd0c906947499 > Author: Lars Magne Ingebrigtsen > Date: Mon Mar 14 20:23:30 2016 +0100 > Disable MOVE more for Dovecot > * lisp/gnus/nnimap.el (nnimap-process-expiry-targets): Also > disable MOVE when expirying. > (nnimap-split-incoming-mail): And when splitting mail. Actually, probably more for the preceeding commit: commit 8ed27bdf88cab134c26f3609c4d11c574f74705c Author: Lars Magne Ingebrigtsen Date: Mon Mar 14 20:21:02 2016 +0100 Don't use MOVE on Dovecot * lisp/gnus/nnimap.el (nnimap-request-move-article): Don't use MOVE on Dovecot, since it's broken in many versions. (nnimap-quirks): Mark MOVE on Dovecot as non-working. How was MOVE broken? In what versions of Dovecot was it broken? > If I remember correctly this means that instead of using IMAP MOVE, > articles are moved by a COPY (which gives the target message a new date) > followed by a DELETE. >> Is this still an issue? Is there a possibility of getting it fixed? > It would be very niced if this issue is fixed, because it means I can go > back to expiring to an archive folder without having the dates on the > target message broken.p Is it possible to disable the nnimap-quirks by redefining the nnimap-quirks variable? If so, what should the nnimap-quirks variable be set to? (defvar nnimap-quirks '(("QRESYNC" "Zimbra" "QRESYNC ") ("MOVE" "Dovecot" nil))) Thanks!