From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.4 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 Received: from mx2.math.uh.edu (mx2.math.uh.edu [129.7.128.33]) by inbox.vuxu.org (Postfix) with ESMTP id ABA2929C5C for ; Mon, 15 Jan 2024 16:57:34 +0100 (CET) Received: from lists1.math.uh.edu ([129.7.128.208]) by mx2.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.97.1) (envelope-from ) id 1rPPLA-00000008TkF-1UDL for ml@inbox.vuxu.org; Mon, 15 Jan 2024 09:57:32 -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.97.1) (envelope-from ) id 1rPPIz-00000003JUP-0TMG for ml@inbox.vuxu.org; Mon, 15 Jan 2024 09:55:17 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.97.1) (envelope-from ) id 1rPPIw-00000003JUG-1Vnd for ding@lists.math.uh.edu; Mon, 15 Jan 2024 09:55:14 -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.97.1) (envelope-from ) id 1rPPIt-00000009fdg-0vtb for ding@lists.math.uh.edu; Mon, 15 Jan 2024 09:55:14 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References :Message-ID:Date:Subject:From:To:Sender:Reply-To:Cc: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=FLHUIla5cN5QMe7d9x+IIOn2agvOA797MPeKDUH343I=; b=HInDafeMsaPVBPy2Dd9gy1jviB RnB3271bXsZljLxRDkptq9L+fqiDkq9VbxIdHjPFP+ajeKandCb7OV9ctb47CGdFy5FtJoTEtTqyc kvul0OiO0qgbp0PhPWap6duR/N0xGp9vmmIxdKZVBmJgWlPYU6zUNz5Vph2dynZUxDyI=; 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 1rPPIl-0004nR-P3 for ding@gnus.org; Mon, 15 Jan 2024 16:55:06 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1rPPIj-0002nw-9J for ding@gnus.org; Mon, 15 Jan 2024 16:55:02 +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, 15 Jan 2024 16:54:55 +0100 Organization: Probably a good idea Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:7AwjU89ZgMEgAGJkTHvAAHe38pI= Mail-Copies-To: never List-ID: Precedence: bulk >>>>> John Haman : > Steinar Bang writes: >> 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 use the following in my gnus.el > ;;; Colon is illegal on Windows filesystem > (setq nnheader-file-name-translation-alist '((?: . ?_))) > now, no colons in score files. Thanks for the tip! Didn't help, unfortunately. :-/ Looks like the above translation (i.e. from ascii 58 to ascii 95) was part of the original value of nnheader-file-name-translation-alist on a windows emacs: nnheader-file-name-translation-alist is a variable defined in ‘nnheader.el’. Its value is shown below. [snip!] Value: ((58 . 95)) Original value was ((58 . 95) (42 . 95) (34 . 95) (60 . 95) (62 . 95) (63 . 95))