From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 20951 invoked from network); 13 Nov 2020 20:09:45 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 13 Nov 2020 20:09:45 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1kdfMr-003ePE-1t; Fri, 13 Nov 2020 14:08:21 -0600 Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.94) (envelope-from ) id 1kdfMp-00At28-Pz; Fri, 13 Nov 2020 14:08:19 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1kdfMl-00At0P-LS for ding@lists.math.uh.edu; Fri, 13 Nov 2020 14:08:15 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1kdfMj-003eNN-Q9 for ding@lists.math.uh.edu; Fri, 13 Nov 2020 14:08:15 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version:References:Message-ID:Date:Subject: From:To:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=1VZAqY9KNoC9z5M9hpZbpS3q8NAn1yy01lrLavIlEnc=; b=ZUENKEGEv1bxdWf3+i4F3O7y60 j1XbjvDDey4sxRSwVuFqpzZlNmRx29my2MKdMbm/TavUaXBamSaO+NJdVXq+bUMAwHetp2deW/Uko ATa4dXbxHXaYjqrvMX7P7koNmEPQR4QI3RhYcsPOqlNaOXoX6bJk7honxH2cxWQ4KNaM=; Received: from static.214.254.202.116.clients.your-server.de ([116.202.254.214] helo=ciao.gmane.io) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kdfMc-0002lF-Vq for ding@gnus.org; Fri, 13 Nov 2020 21:08:09 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1kdfMc-00081y-6d for ding@gnus.org; Fri, 13 Nov 2020 21:08:06 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: "Jose A. Ortega Ruiz" Subject: Re: New "gnus-search" syntax and interface Date: Fri, 13 Nov 2020 20:06:58 +0000 Message-ID: <87pn4hc97h.fsf@gnus.jao.io> References: <87blgdavsb.fsf@ericabrahamsen.net> <877dqpikh5.fsf@ucl.ac.uk> <87sg9dctwu.fsf@hillenius.net> <87tuttfm20.fsf@ucl.ac.uk> <87ft5dgrm6.fsf@ericabrahamsen.net> <87361djiui.fsf@ucl.ac.uk> <877dqpgoky.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cancel-Lock: sha1:CrrbI9hdJ9Lh1lG7WX8rErYuMlk= X-Attribution: jao X-Clacks-Overhead: GNU Terry Pratchett X-URL: List-ID: Precedence: bulk Hi Eric F, This sounds suspiciously similar to a problem i had to overcome trying to use gnus-search-notmuch in a slightly different context: the search for groups in the results was using the group names using dots instead of slashes. In my case it was with an nntp group, but i was expecting it to happen with nnml too. if evaluating the following snippet fixes it for you, then it's exactly the problem i encountered (Eric A. will remember): (with-eval-after-load "gnus-search" (cl-defmethod gnus-search-indexed-parse-output :around ((e gnus-search-notmuch) s q groups) (let ((gs (mapcar (lambda (g) (replace-regexp-in-string "\\." "/" g)) groups))) (cl-call-next-method e s q gs)))) (Here, i'm assuming your search engine is defined as gnus-search-notmuch). HTH, jao -- It is a truism of escape plans that the problem with going anywhere is that you take yourself with you -- Emma Brockes