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, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 21552 invoked from network); 8 Jan 2024 13:12:09 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 8 Jan 2024 13:12:09 -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.96.2) (envelope-from ) id 1rMpQA-0045mB-0F for ml@inbox.vuxu.org; Mon, 08 Jan 2024 07:12:02 -0600 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.96.2) (envelope-from ) id 1rMpQ9-0034kU-2L for ml@inbox.vuxu.org; Mon, 08 Jan 2024 07:12:01 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.96.2) (envelope-from ) id 1rMpQ1-0034kL-35 for ding@lists.math.uh.edu; Mon, 08 Jan 2024 07:11:59 -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.96.2) (envelope-from ) id 1rMpQ0-0045lO-0f for ding@lists.math.uh.edu; Mon, 08 Jan 2024 07:11:53 -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=7bu1E7yQKK6QJvoWxdgQCI4y9t//AG7ZodsbYofKYN8=; b=hGGI4pkv7lHYPGI6gPmnoy7VAr vTyrKakKt0p4ptg0noxN1rdYIT6b+q38T04TvccVs913MjZCrEBCheQt2LvMkU19tPzXbIu7+bTau bde5Ah0SwdDSAdW4jBtq6iLlWdN/WMrkVMqMjM3QBWDWDxzDPoXebQGVeCFMALsh495E=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rMpPf-0005Cd-PC for ding@gnus.org; Mon, 08 Jan 2024 14:11:37 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1rMpPc-0004tX-TN for ding@gnus.org; Mon, 08 Jan 2024 14:11:28 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org To: ding@gnus.org From: Steinar Bang Subject: Re: The current state of gnus-cloud Date: Mon, 08 Jan 2024 14:11:24 +0100 Organization: Probably a good idea Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:6R2iZufTzXLKtEkGZ7aT2K2BwBU= Mail-Copies-To: never List-ID: Precedence: bulk I'm trying to use gnus-cloud on emacs 29 on a new windows laptop. First hurdle: gnus-cloud sync fails because it can't overwrite ~ backup files. I cloned the emacs git repository, made a branch off the emacs-29 branch and cherry picked my fix from a similar emacs 28 branch (made in june 2023) https://github.com/steinarb/emacs-gnus-cloud-sb/commit/e48bb24270f93e40192b18dcead2f95190e1b1a4 Then byte compiled the gnus and restarted emacs (I have ~/git/emacs/lisp/gnus in the load-path). The new branch is here: https://github.com/steinarb/emacs-gnus-cloud-sb/tree/emacs-29-with-gnus-cloud-mods Second hurdle: gnus sync fails because it can't handle files with ":" in their names on Windows. Stack trace here: https://gist.github.com/steinarb/8806d9ac18f00a4504eb00ece117c0bf I have the following setting in ~/.emacs: (setq gnus-cloud-synced-files '((:directory "~/News" :match ".*.SCORE\\'")) I have tried to make it more restrictive to exclude file names containing ":" but I get the same error: (setq gnus-cloud-synced-files '((:directory "~/News" :match "[^:]*\\.SCORE\\'")) Ideas? Thanks! - Steinar