From owner-ctm-users@FreeBSD.ORG Fri Sep 21 04:54:26 2012 Return-Path: Delivered-To: ctm-users@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBD05106564A for ; Fri, 21 Sep 2012 04:54:26 +0000 (UTC) (envelope-from aehlig@linta.de) Received: from linta.de (isilmar-3.linta.de [188.40.101.200]) by mx1.freebsd.org (Postfix) with ESMTP id 13F128FC14 for ; Fri, 21 Sep 2012 04:54:25 +0000 (UTC) Received: (qmail 32588 invoked by uid 10); 21 Sep 2012 04:47:43 -0000 Received: from curry.linta.de by isilmar.linta.de with BSMTP; 21 Sep 2012 04:47:43 -0000 Received: by curry.linta.de (Postfix, from userid 1001) id 9130B1CC1D; Fri, 21 Sep 2012 06:47:29 +0200 (CEST) Date: Fri, 21 Sep 2012 06:47:29 +0200 From: "Klaus T. Aehlig" To: Stephen Montgomery-Smith Message-ID: <20120921044729.GA47944@curry.linta.de> References: <4EF55B2B.9010700@missouri.edu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline In-Reply-To: <4EF55B2B.9010700@missouri.edu> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "ctm-users@freebsd.org" Subject: Re: svn-cur X-BeenThere: ctm-users@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CTM User discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2012 04:54:26 -0000 --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, > You will have to apply the patch to /usr/src/usr.sbin/ctm/ctm and > rebuild ctm. (I think "make depend && make && make install" is what you > need to do.) sorry if I missed something, but may I suggest another patch (see attached, to be applied on top of the other patches). With the change to svn, the name of the deltas has changed from .gz to .xz, which has the effect that ctm_rmail no longer finds the missing pieces in the pieces directory so one would have to apply them by hand... Best regards, Klaus --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-for-ctm_rmail --- /usr/src/usr.sbin/ctm/ctm_rmail/ctm_rmail.c.orig 2012-09-20 23:02:19.000000000 +0200 +++ /usr/src/usr.sbin/ctm/ctm_rmail/ctm_rmail.c 2012-09-21 06:25:11.000000000 +0200 @@ -198,7 +198,7 @@ */ for (;;) { - sprintf(delta, "%s.%04d.gz", class, ++dn); + sprintf(delta, "%s.%05d.xz", class, ++dn); mk_delta_name(fname, delta); if (stat(fname, &sb) < 0) --jI8keyz6grp/JLjh--