From owner-freebsd-python@FreeBSD.ORG Tue Oct 17 08:48:57 2006 Return-Path: X-Original-To: python@freebsd.org Delivered-To: freebsd-python@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D25916A4C8; Tue, 17 Oct 2006 08:48:57 +0000 (UTC) (envelope-from andrey.zverev@electro-com.ru) Received: from mail.electro-com.ru (mail.electro-com.ru [86.110.161.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4538243D90; Tue, 17 Oct 2006 08:48:52 +0000 (GMT) (envelope-from andrey.zverev@electro-com.ru) Received: from [86.110.161.246] (helo=[127.0.0.1]) by mail.electro-com.ru with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GZkcy-000Ng3-0a; Tue, 17 Oct 2006 12:48:48 +0400 Message-ID: <453498EB.3040400@electro-com.ru> Date: Tue, 17 Oct 2006 12:48:43 +0400 From: Andrej Zverev User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: =?UTF-8?B?QW5kcsOpIE1hbG8=?= References: <4533E49D.2000005@collaborativefusion.com> <1161030243.37174.64.camel@soundwave.pgh.priv.collaborativefusion.com> <1161056944.5141.18.camel@localhost> <200610170936.51269.nd@perlig.de> In-Reply-To: <200610170936.51269.nd@perlig.de> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: "Brian J. Creasy" , netops@collaborativefusion.com, python@freebsd.org, az@freebsd.org, Tom McLaughlin , "Brian A. Seklecki" Subject: Re: [netops] Re: svnmailer issue X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Oct 2006 08:48:57 -0000 Well, if it's patch is okay, let's ask portmrg to approve it and update checksum. André Malo пишет: > * Tom McLaughlin wrote: > > >> I don't use svnmailer and it's a little late here but is the attached >> patch correct? >> > > Nope ;-) > The "unicode" string is the type of the config parameter, which should not > be changed. 8bit is one of the values. > > I've attached another patch, which should change the default value to 8bit. > > >> In addition, the 1.0.6 tarball was rerolled. Anyone have a copy of the >> old one that can be compared to the new one to see what changes have >> been made? Maybe this secondary problem can wait until after freeze >> since we have a copy of the distfile cached on the FBSD mirrors. >> > > That would be me. I had to reroll the archived versions after a harddisk > crash some months ago (only the current version was backupped). There's no > code change between them. Only some date strings in the docs and stuff like > that were changed. > > nd > > ------------------------------------------------------------------------ > > diff -Nur svnmailer-1.0.6~/src/lib/svnmailer/notifier/_textmail.py svnmailer-1.0.6/src/lib/svnmailer/notifier/_textmail.py > --- svnmailer-1.0.6~/src/lib/svnmailer/notifier/_textmail.py 2006-02-04 20:22:10.000000000 +0100 > +++ svnmailer-1.0.6/src/lib/svnmailer/notifier/_textmail.py 2006-10-17 09:29:49.000000000 +0200 > @@ -137,7 +137,7 @@ > u"base 64" : "B", > u"8bit" : "8", > u"8 bit" : "8", > - }.get((self.getTransferEncoding() or u'').lower(), 'Q')) > + }.get((self.getTransferEncoding() or u'').lower(), '8')) > > for mail in mails: > mail.update(headers) >