From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/88697 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Using the $Forwarded keyword in nnimap Date: Wed, 31 Jul 2019 15:10:26 -0700 Message-ID: <877e7xkg8d.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="48422"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) To: ding@gnus.org Original-X-From: ding-owner+M36901@lists.math.uh.edu Thu Aug 01 00:11:42 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 1hswot-000CPR-LU for ding-account@gmane.org; Thu, 01 Aug 2019 00:11:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.92) (envelope-from ) id 1hswo5-0006ph-1z; Wed, 31 Jul 2019 17:10:49 -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) (envelope-from ) id 1hswnz-0006my-6T for ding@lists.math.uh.edu; Wed, 31 Jul 2019 17:10:43 -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) (envelope-from ) id 1hswnx-00031n-7R for ding@lists.math.uh.edu; Wed, 31 Jul 2019 17:10:43 -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 1hswnt-0000nt-9W for ding@gnus.org; Thu, 01 Aug 2019 00:10:39 +0200 Original-Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hswnq-000BGp-CS for ding@gnus.org; Thu, 01 Aug 2019 00:10:34 +0200 X-Injected-Via-Gmane: http://gmane.org/ Cancel-Lock: sha1:j0nRNLJJuYqCLnS+P8vsUX6B3CY= List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:88697 Archived-At: Hey all, I just realized that it's very easy to tie Gnus' forwarded mark to the IMAP $Forwarded keyword, which is supported in recent versions of Dovecot, at least (I don't know about other IMAP servers). If you think your server supports it, this code should be enough to enable it: (with-eval-after-load 'nnimap (setf (alist-get 'forward nnimap-mark-alist) '("$Forwarded" $Forwarded))) Maybe everyone else already figured this out, but if not... :)