From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/35056 Path: main.gmane.org!not-for-mail From: "Jason R. Mastaler" Newsgroups: gmane.emacs.gnus.general Subject: Re: `user-mail-address' for message-ids Date: 27 Feb 2001 16:51:16 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: <20010223133030.B14991@mastaler.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035170861 967 80.91.224.250 (21 Oct 2002 03:27:41 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:27:41 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id 98414D049D for ; Tue, 27 Feb 2001 18:51:57 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id RAB25231; Tue, 27 Feb 2001 17:51:47 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 27 Feb 2001 17:51:00 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id RAA16511 for ; Tue, 27 Feb 2001 17:50:48 -0600 (CST) Original-Received: from acl.lanl.gov (acl.lanl.gov [128.165.147.1]) by mailhost.sclp.com (Postfix) with ESMTP id B6ED1D049D for ; Tue, 27 Feb 2001 18:51:18 -0500 (EST) Original-Received: from cyan.acl.lanl.gov (root@cyan.acl.lanl.gov [128.165.147.151]) by acl.lanl.gov (8.8.8/8.8.5) with ESMTP id QAA9237951; Tue, 27 Feb 2001 16:51:16 -0700 (MST) Original-Received: (from jasonrm@localhost) by cyan.acl.lanl.gov (8.9.3/8.8.8) id QAA06776; Tue, 27 Feb 2001 16:51:16 -0700 Original-To: ding@gnus.org Mail-Copies-To: never In-Reply-To: prj@po.cwru.edu's message of "27 Feb 2001 17:14:30 -0500" User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Cuyahoga Valley) Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 34 Xref: main.gmane.org gmane.emacs.gnus.general:35056 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:35056 prj@po.cwru.edu (Paul Jarc) writes: > > But remember that gnus also adds a `.fsf' to the lhs. > > A different algorithm might happen to append that same string, In practice this just isn't going to happen. To reduce the possibility even further however, I'd replace `.fsf' with `.gnus'. Index: lisp/message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 6.65 diff -u -r6.65 message.el --- lisp/message.el 2001/02/19 01:13:41 6.65 +++ lisp/message.el 2001/02/27 23:48:54 @@ -3155,7 +3155,7 @@ ;; If you ever change this function, make sure the new version ;; cannot generate IDs that the old version could. ;; You might for example insert a "." somewhere (not next to another dot -;; or string boundary), or modify the "fsf" string. +;; or string boundary), or modify the ".gnus" string. (defun message-unique-id () ;; Don't use microseconds from (current-time), they may be unsupported. ;; Instead we use this randomly inited counter. @@ -3179,7 +3179,7 @@ ;; Append the newsreader name, because while the generated ;; ID is unique to this newsreader, other newsreaders might ;; otherwise generate the same ID via another algorithm. - ".fsf"))) + ".gnus"))) (defun message-number-base36 (num len) (if (if (< len 0)