From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/26791 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: SCORE doesn't work in Gnus Date: 13 Nov 1999 21:05:34 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: <199911131913.DAA14801@mercury.starnet.gov.sg> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163934 21259 80.91.224.250 (21 Oct 2002 01:32:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:32:14 +0000 (UTC) Cc: nicene@bigfoot.com (Andie), xemacs-nt@xemacs.org, ding@gnus.org Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id PAA20340 for ; Sat, 13 Nov 1999 15:06:28 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id OAB26943; Sat, 13 Nov 1999 14:06:18 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 13 Nov 1999 14:06:30 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id OAA07348 for ; Sat, 13 Nov 1999 14:06:16 -0600 (CST) Original-Received: from badis.pdc.kth.se (root@badis.pdc.kth.se [130.237.221.45]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id PAA20328 for ; Sat, 13 Nov 1999 15:05:44 -0500 (EST) Original-Received: (from jas@localhost) by badis.pdc.kth.se (8.9.3/8.9.3) id VAA13802; Sat, 13 Nov 1999 21:05:36 +0100 Original-To: Jan Vroonhof In-Reply-To: Jan Vroonhof's message of "13 Nov 1999 20:53:18 +0100" Original-Lines: 27 User-Agent: Gnus/5.070099 (Pterodactyl Gnus v0.99) Emacs/20.4.90 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:26791 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:26791 Jan Vroonhof writes: > nicene@bigfoot.com (Andie) writes: > > > Windows doesn't permit files with ":" in the filename and the score > > file for foreign servers contains the character. As a result, whenever > > Gnus tries to save score customisation for a foreign group, it > > hangs. Emacs for Win32 doesn't have the problem as the score file uses > > "_" instead of ":". > > Hmmm. This seems more like a gnus problem to me. Do you mean that > NTEmacs, mangles filenames automatically? From what I can see gnus > doesn't seem to use any special code for NTEmacs here. If Gnus is used under Win32 this is required: (setq nnheader-file-name-translation-alist '((?: . ?_) (?+ . ?-))) OTOH this should be the default for theese systems -- so make sure the variable contain the proper value. The check is (string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type)) would that evaluate to true on a Windows 95/98 system, I wonder?