From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/86060 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: registry marks? Date: Sat, 11 Jul 2015 23:44:56 +0800 Message-ID: <87mvz28zrb.fsf@ericabrahamsen.net> References: <6sw6c7lheqtu05.fsf@bo-c02p460yg3qc.home> <87a8v69ltb.fsf@ericabrahamsen.net> <6sw6c7egkg2opt.fsf@bo-c02p460yg3qc.home> <87r3of88hb.fsf@ericabrahamsen.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1436629579 25713 80.91.229.3 (11 Jul 2015 15:46:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 11 Jul 2015 15:46:19 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M34295@lists.math.uh.edu Sat Jul 11 17:46:06 2015 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZDwyb-0003Ba-7V for ding-account@gmane.org; Sat, 11 Jul 2015 17:46:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.85) (envelope-from ) id 1ZDwxv-0001pK-Hf; Sat, 11 Jul 2015 10:45:23 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by lists1.math.uh.edu with esmtps (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.85) (envelope-from ) id 1ZDwxs-0001os-Ih for ding@lists.math.uh.edu; Sat, 11 Jul 2015 10:45:20 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1ZDwxo-0005pj-QL for ding@lists.math.uh.edu; Sat, 11 Jul 2015 10:45:20 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.80) (envelope-from ) id 1ZDwxm-0002ue-Qg for ding@gnus.org; Sat, 11 Jul 2015 17:45:14 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZDwxi-0002e1-Oa for ding@gnus.org; Sat, 11 Jul 2015 17:45:11 +0200 Original-Received: from 222.128.167.57 ([222.128.167.57]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 11 Jul 2015 17:45:10 +0200 Original-Received: from eric by 222.128.167.57 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 11 Jul 2015 17:45:10 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 54 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 222.128.167.57 User-Agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:j0fLDblaQhovSgqG2zPTO524NP0= X-Spam-Score: -0.3 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:86060 Archived-At: Peter Davis writes: > Eric Abrahamsen writes: > >> Peter Davis writes: >> >>> Eric Abrahamsen writes: >>> >>>> Peter Davis writes: >>>> >>>>> I'm running gnus 5.13 and, while the gnus menu offers an option for >>>>> adding registry marks to a message, the variable gnus-registry-marks is >>>>> undefined, and none of my attempts to mark a message work. >>>>> >>>>> Is there something I have to configure to enable this feature? >>>>> >>>>> I'm assuming once I've marked messages, I can somehow retrieve them by >>>>> mark, or list all the messages marked Important or whatever, right? I'm >>>>> using nnimap. >>>> >>>> Have you required the gnus-registry library, and put >>>> (gnus-registry-initialize) in your init files? I can't think of any >>>> other way that `gnus-registry-marks' would be undefined... >>> >>> Ok, that definitely helps. Now I can see the values for >>> gnus-registry-marks, but when I try to add one, e.g., via `M M i', I get: >>> >>> Removing mark nil with message ID <87a8v69ltb.fsf@ericabrahamsen.net>, resulting in nil >>> >>> Thanks, >>> -pd >> >> Yup, looks like the commands were being given to the function backwards. >> I've pushed a patch for this, would you try it out? > > I'd be happy to, Eric, but I confess that I don't know how to do that. I'm running Gnus on Aquamacs 3.2 GNU Emacs 24.4.51.2. Can I > just pull a .el file from somewhere, substitute it for an existing file, and then restart emacs? Or do I have to rebuild a binary? > > (If I find out how to do this, maybe I can also try out some of the very tempting IMAP improvements people have been talking about.) In that case it's a little fiddly -- if you want to run the latest Gnus codebase, your only realistic option is to clone the Gnus git repo, and then add that to your load path. So this: git clone http://git.gnus.org/gnus.git And then: (add-to-list 'load-path "~/wherever/you/put/gnus/lisp") That should get you running the newest code. Yours, Eric