From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A0834C433F5 for ; Wed, 25 May 2022 19:23:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239237AbiEYTXz (ORCPT ); Wed, 25 May 2022 15:23:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59772 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230213AbiEYTXx (ORCPT ); Wed, 25 May 2022 15:23:53 -0400 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E097D47ACF for ; Wed, 25 May 2022 12:23:51 -0700 (PDT) Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ntwbY-0004JI-2T; Wed, 25 May 2022 21:23:36 +0200 Received: from [2a0a:edc0:0:900:1d::77] (helo=ptz.office.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ntwbX-004XU8-S5; Wed, 25 May 2022 21:23:34 +0200 Received: from ukl by ptz.office.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ntwbV-00C6hw-HB; Wed, 25 May 2022 21:23:33 +0200 Date: Wed, 25 May 2022 21:23:29 +0200 From: Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= To: David Woodhouse Cc: Geert Uytterhoeven , Krzysztof Kozlowski , mark@msapiro.net, workflows@vger.kernel.org, Konstantin Ryabitsev , "linux-arm-kernel@lists.infradead.org" , MTD Maling List , Linux Kernel Mailing List , Arnd Bergmann , Miquel Raynal Subject: Re: Getting rid of infradead.org - corrupted subjects Message-ID: <20220525192329.iomxf2imkaymbjc3@pengutronix.de> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tybjbooddzx3c3qw" Content-Disposition: inline In-Reply-To: X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --tybjbooddzx3c3qw Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 25, 2022 at 10:55:18AM +0100, David Woodhouse wrote: > On Wed, 2022-05-25 at 10:34 +0200, Geert Uytterhoeven wrote: > > CC dwmw2 >=20 > Thanks, Geert. >=20 > > On Wed, May 25, 2022 at 10:07 AM Krzysztof Kozlowski > > wrote: > >=20 > > > The address list is semi-random as I don't know whom to approach. > > > Problem: infradead.org corrupts email subjects by changing: > > > s/,/, / >=20 > I found an old thread on mailman-users which appears to be claiming > that it's just standard folding as described in RFC2822 =A72.2.3. >=20 > https://mail.python.org/pipermail/mailman-users/2007-May/057119.html >=20 > 2.2.3. Long Header Fields >=20 > Each header field is logically a single line of characters comprising > the field name, the colon, and the field body. For convenience > however, and to deal with the 998/78 character limitations per line, > the field body portion of a header field can be split into a multiple > line representation; this is called "folding". The general rule is > that wherever this standard allows for folding white space (not > simply WSP characters), a CRLF may be inserted before any WSP. For > example, the header field: >=20 > Subject: This is a test >=20 > can be represented as: >=20 > Subject: This > is a test >=20 > But this is folding at a *comma*, not at whitespace. The original > subject line was (in a single line): >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec,spi-nor: remove unneeded prop= erties >=20 > ... and Mailman 'folded' it in the wrong place to: >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec, > spi-nor: remove unneeded properties >=20 > That *isn't* proper folding because it didn't happen at a whitespace. >=20 > I do need to upgrade to Mailman 3 at some point; I've been > procrastinating on the basis that it "ain't broke". For the time being > I've just disabled folding in MM2 with a trivial hack: >=20 > --- Message.py.orig 2022-05-25 02:51:05.917145192 -0700 > +++ Message.py 2022-05-25 02:50:44.137142069 -0700 > @@ -49,7 +49,7 @@ class Generator(email.Generator.Generato > Headers will by default _not_ be folded in attachments. > """ > def __init__(self, outfp, mangle_from_=3DTrue, > - maxheaderlen=3D78, children_maxheaderlen=3D0): > + maxheaderlen=3D0, children_maxheaderlen=3D0): > email.Generator.Generator.__init__(self, outfp, > mangle_from_=3Dmangle_from_, maxheaderlen=3Dmaxheaderlen) > self.__children_maxheaderlen =3D children_maxheaderlen For the record: Some time ago I debugged that myself, too and found an equivalent change. So this looks good to me. Best regards and thanks for caring, Uwe --=20 Pengutronix e.K. | Uwe Kleine-K=F6nig | Industrial Linux Solutions | https://www.pengutronix.de/ | --tybjbooddzx3c3qw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEfnIqFpAYrP8+dKQLwfwUeK3K7AkFAmKOgi4ACgkQwfwUeK3K 7AmUrgf9GplHRJVMfpm/l5d2OZURTa/slOVqodg2MpZPAwt8fWVpX+FQtESCPDQf YSDFbyz8b0ytHlJRZ/FGjrSUHLXOpgAEqfofXJEYJul+Yt5GRAhpy2spNrP3fg93 O2+h0AnTRP2KK4ksMHccZOhzBbL/qGPwq2ekaa12HOGsQaAe+fQHZuCMGnW2RufU QXlYmBO3m3QbuPCDyMZNSIf61LA8ogRq9sCmbjbL42RHwoA2l30psHJDLodyHVLu qkzh6XfeMxfmGKC20/WW/uqH8/xarMcmMIsjjbIT+9NUPkrZ7D15hct+6PUmdjxV B/LajT9mPt5p+tkbhZ/BxIXGY5iySA== =MXTp -----END PGP SIGNATURE----- --tybjbooddzx3c3qw-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DAB3EC433EF for ; Wed, 25 May 2022 19:46:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type: List-Subscribe:List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: In-Reply-To:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Reply-To:Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date :Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=kk6Ayr69T/yb1D87rhqJdO612xfbDleXDak9QQicYCM=; b=ORR/Tnqs1rzuZd/tJlnHbiDHwL ggUEn6jl6ulxIrvq7hidb0UDGAv4OZ0BOtNBjyjwlWd8tY5+MOt07jFmJ5oRYagH2WmYrQ5s2+z3k SRtuA9UI3LNVGyuVDyIwutQM/QP11CxKACV3PG6ZbK1Cq6eY1H78Hi4xf8axLzv4Ziz2VYjBzOCsj ONQXc/6YZnpK0VMTq40LO/nFWmGhUljslqFioetoifqWDbK0PKzZlY5xcyP5QRdkuH9TxRaQMvYQv bOehVp9uZLC2ySBGICg9J8UoqXTEOy9TWbClneln2UAnWOjU7vQhHNJlg0apTww8nU3fDNtE30JOu W5PVehvQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ntwwp-00CTlg-EB; Wed, 25 May 2022 19:45:35 +0000 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ntwbk-00CKzk-Ha for linux-mtd@lists.infradead.org; Wed, 25 May 2022 19:23:50 +0000 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ntwbY-0004JI-2T; Wed, 25 May 2022 21:23:36 +0200 Received: from [2a0a:edc0:0:900:1d::77] (helo=ptz.office.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ntwbX-004XU8-S5; Wed, 25 May 2022 21:23:34 +0200 Received: from ukl by ptz.office.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ntwbV-00C6hw-HB; Wed, 25 May 2022 21:23:33 +0200 Date: Wed, 25 May 2022 21:23:29 +0200 From: Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= To: David Woodhouse Cc: Geert Uytterhoeven , Krzysztof Kozlowski , mark@msapiro.net, workflows@vger.kernel.org, Konstantin Ryabitsev , "linux-arm-kernel@lists.infradead.org" , MTD Maling List , Linux Kernel Mailing List , Arnd Bergmann , Miquel Raynal Subject: Re: Getting rid of infradead.org - corrupted subjects Message-ID: <20220525192329.iomxf2imkaymbjc3@pengutronix.de> References: MIME-Version: 1.0 In-Reply-To: X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-mtd@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220525_122348_630784_8DBE98C6 X-CRM114-Status: GOOD ( 32.89 ) X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============3896011969150263738==" Sender: "linux-mtd" Errors-To: linux-mtd-bounces+linux-mtd=archiver.kernel.org@lists.infradead.org --===============3896011969150263738== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tybjbooddzx3c3qw" Content-Disposition: inline --tybjbooddzx3c3qw Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 25, 2022 at 10:55:18AM +0100, David Woodhouse wrote: > On Wed, 2022-05-25 at 10:34 +0200, Geert Uytterhoeven wrote: > > CC dwmw2 >=20 > Thanks, Geert. >=20 > > On Wed, May 25, 2022 at 10:07 AM Krzysztof Kozlowski > > wrote: > >=20 > > > The address list is semi-random as I don't know whom to approach. > > > Problem: infradead.org corrupts email subjects by changing: > > > s/,/, / >=20 > I found an old thread on mailman-users which appears to be claiming > that it's just standard folding as described in RFC2822 =A72.2.3. >=20 > https://mail.python.org/pipermail/mailman-users/2007-May/057119.html >=20 > 2.2.3. Long Header Fields >=20 > Each header field is logically a single line of characters comprising > the field name, the colon, and the field body. For convenience > however, and to deal with the 998/78 character limitations per line, > the field body portion of a header field can be split into a multiple > line representation; this is called "folding". The general rule is > that wherever this standard allows for folding white space (not > simply WSP characters), a CRLF may be inserted before any WSP. For > example, the header field: >=20 > Subject: This is a test >=20 > can be represented as: >=20 > Subject: This > is a test >=20 > But this is folding at a *comma*, not at whitespace. The original > subject line was (in a single line): >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec,spi-nor: remove unneeded prop= erties >=20 > ... and Mailman 'folded' it in the wrong place to: >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec, > spi-nor: remove unneeded properties >=20 > That *isn't* proper folding because it didn't happen at a whitespace. >=20 > I do need to upgrade to Mailman 3 at some point; I've been > procrastinating on the basis that it "ain't broke". For the time being > I've just disabled folding in MM2 with a trivial hack: >=20 > --- Message.py.orig 2022-05-25 02:51:05.917145192 -0700 > +++ Message.py 2022-05-25 02:50:44.137142069 -0700 > @@ -49,7 +49,7 @@ class Generator(email.Generator.Generato > Headers will by default _not_ be folded in attachments. > """ > def __init__(self, outfp, mangle_from_=3DTrue, > - maxheaderlen=3D78, children_maxheaderlen=3D0): > + maxheaderlen=3D0, children_maxheaderlen=3D0): > email.Generator.Generator.__init__(self, outfp, > mangle_from_=3Dmangle_from_, maxheaderlen=3Dmaxheaderlen) > self.__children_maxheaderlen =3D children_maxheaderlen For the record: Some time ago I debugged that myself, too and found an equivalent change. So this looks good to me. Best regards and thanks for caring, Uwe --=20 Pengutronix e.K. | Uwe Kleine-K=F6nig | Industrial Linux Solutions | https://www.pengutronix.de/ | --tybjbooddzx3c3qw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEfnIqFpAYrP8+dKQLwfwUeK3K7AkFAmKOgi4ACgkQwfwUeK3K 7AmUrgf9GplHRJVMfpm/l5d2OZURTa/slOVqodg2MpZPAwt8fWVpX+FQtESCPDQf YSDFbyz8b0ytHlJRZ/FGjrSUHLXOpgAEqfofXJEYJul+Yt5GRAhpy2spNrP3fg93 O2+h0AnTRP2KK4ksMHccZOhzBbL/qGPwq2ekaa12HOGsQaAe+fQHZuCMGnW2RufU QXlYmBO3m3QbuPCDyMZNSIf61LA8ogRq9sCmbjbL42RHwoA2l30psHJDLodyHVLu qkzh6XfeMxfmGKC20/WW/uqH8/xarMcmMIsjjbIT+9NUPkrZ7D15hct+6PUmdjxV B/LajT9mPt5p+tkbhZ/BxIXGY5iySA== =MXTp -----END PGP SIGNATURE----- --tybjbooddzx3c3qw-- --===============3896011969150263738== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ --===============3896011969150263738==-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C399FC433F5 for ; Wed, 25 May 2022 19:46:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type: List-Subscribe:List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: In-Reply-To:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Reply-To:Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date :Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=6dY4cOYk8WBHojaZaxABnOEnuR9AdSNOWu83Q+ECPb4=; b=Nja8hZwJ+Ez0YGuj+66hbfqBI0 Bhbs/PEiUDtgDq/gSsHQ9FglDFyGrsZO1hKE2nDRx5ZxSrTTWVosbdlcTU7ZfDuRtlCTkJkfLPSSx kvBwplf/yEzbMn4rkV1Z47OBT2idsU8mVXXh7cIEG1b1YVs/QTdnHkN0pFrMXUMQ1QrZTmCRHMctV 9gWYT4WUVPe9PcHS/PN1D1vot68lN4X4xsbeby0x5V9Gr4nd/bUUncTQVQX2tan6YV+HIbjshqLgY WXd34pYbgY+MjXaHb6Bkz3NLssdX8RU64n070TizAOUySsAHIsm3AsInfWg0kmEIdIDQufLyUm4C0 3M3p/lqw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ntwwA-00CTT0-1i; Wed, 25 May 2022 19:44:54 +0000 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ntwbh-00CKwf-1n for linux-arm-kernel@lists.infradead.org; Wed, 25 May 2022 19:23:47 +0000 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ntwbY-0004JI-2T; Wed, 25 May 2022 21:23:36 +0200 Received: from [2a0a:edc0:0:900:1d::77] (helo=ptz.office.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1ntwbX-004XU8-S5; Wed, 25 May 2022 21:23:34 +0200 Received: from ukl by ptz.office.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1ntwbV-00C6hw-HB; Wed, 25 May 2022 21:23:33 +0200 Date: Wed, 25 May 2022 21:23:29 +0200 From: Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= To: David Woodhouse Cc: Geert Uytterhoeven , Krzysztof Kozlowski , mark@msapiro.net, workflows@vger.kernel.org, Konstantin Ryabitsev , "linux-arm-kernel@lists.infradead.org" , MTD Maling List , Linux Kernel Mailing List , Arnd Bergmann , Miquel Raynal Subject: Re: Getting rid of infradead.org - corrupted subjects Message-ID: <20220525192329.iomxf2imkaymbjc3@pengutronix.de> References: MIME-Version: 1.0 In-Reply-To: X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220525_122345_140586_129A775F X-CRM114-Status: GOOD ( 33.46 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============6519413168019680868==" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org --===============6519413168019680868== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tybjbooddzx3c3qw" Content-Disposition: inline --tybjbooddzx3c3qw Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 25, 2022 at 10:55:18AM +0100, David Woodhouse wrote: > On Wed, 2022-05-25 at 10:34 +0200, Geert Uytterhoeven wrote: > > CC dwmw2 >=20 > Thanks, Geert. >=20 > > On Wed, May 25, 2022 at 10:07 AM Krzysztof Kozlowski > > wrote: > >=20 > > > The address list is semi-random as I don't know whom to approach. > > > Problem: infradead.org corrupts email subjects by changing: > > > s/,/, / >=20 > I found an old thread on mailman-users which appears to be claiming > that it's just standard folding as described in RFC2822 =A72.2.3. >=20 > https://mail.python.org/pipermail/mailman-users/2007-May/057119.html >=20 > 2.2.3. Long Header Fields >=20 > Each header field is logically a single line of characters comprising > the field name, the colon, and the field body. For convenience > however, and to deal with the 998/78 character limitations per line, > the field body portion of a header field can be split into a multiple > line representation; this is called "folding". The general rule is > that wherever this standard allows for folding white space (not > simply WSP characters), a CRLF may be inserted before any WSP. For > example, the header field: >=20 > Subject: This is a test >=20 > can be represented as: >=20 > Subject: This > is a test >=20 > But this is folding at a *comma*, not at whitespace. The original > subject line was (in a single line): >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec,spi-nor: remove unneeded prop= erties >=20 > ... and Mailman 'folded' it in the wrong place to: >=20 > Subject: [PATCH v2] dt-bindings: mtd: jedec, > spi-nor: remove unneeded properties >=20 > That *isn't* proper folding because it didn't happen at a whitespace. >=20 > I do need to upgrade to Mailman 3 at some point; I've been > procrastinating on the basis that it "ain't broke". For the time being > I've just disabled folding in MM2 with a trivial hack: >=20 > --- Message.py.orig 2022-05-25 02:51:05.917145192 -0700 > +++ Message.py 2022-05-25 02:50:44.137142069 -0700 > @@ -49,7 +49,7 @@ class Generator(email.Generator.Generato > Headers will by default _not_ be folded in attachments. > """ > def __init__(self, outfp, mangle_from_=3DTrue, > - maxheaderlen=3D78, children_maxheaderlen=3D0): > + maxheaderlen=3D0, children_maxheaderlen=3D0): > email.Generator.Generator.__init__(self, outfp, > mangle_from_=3Dmangle_from_, maxheaderlen=3Dmaxheaderlen) > self.__children_maxheaderlen =3D children_maxheaderlen For the record: Some time ago I debugged that myself, too and found an equivalent change. So this looks good to me. Best regards and thanks for caring, Uwe --=20 Pengutronix e.K. | Uwe Kleine-K=F6nig | Industrial Linux Solutions | https://www.pengutronix.de/ | --tybjbooddzx3c3qw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEfnIqFpAYrP8+dKQLwfwUeK3K7AkFAmKOgi4ACgkQwfwUeK3K 7AmUrgf9GplHRJVMfpm/l5d2OZURTa/slOVqodg2MpZPAwt8fWVpX+FQtESCPDQf YSDFbyz8b0ytHlJRZ/FGjrSUHLXOpgAEqfofXJEYJul+Yt5GRAhpy2spNrP3fg93 O2+h0AnTRP2KK4ksMHccZOhzBbL/qGPwq2ekaa12HOGsQaAe+fQHZuCMGnW2RufU QXlYmBO3m3QbuPCDyMZNSIf61LA8ogRq9sCmbjbL42RHwoA2l30psHJDLodyHVLu qkzh6XfeMxfmGKC20/WW/uqH8/xarMcmMIsjjbIT+9NUPkrZ7D15hct+6PUmdjxV B/LajT9mPt5p+tkbhZ/BxIXGY5iySA== =MXTp -----END PGP SIGNATURE----- --tybjbooddzx3c3qw-- --===============6519413168019680868== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel --===============6519413168019680868==--