From unknown Wed Jun 18 23:16:12 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#13555 <13555@debbugs.gnu.org> To: bug#13555 <13555@debbugs.gnu.org> Subject: Status: printf ignores length modifier Reply-To: bug#13555 <13555@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:16:12 +0000 retitle 13555 printf ignores length modifier reassign 13555 coreutils submitter 13555 "Marcel B=C3=B6hme" severity 13555 normal tag 13555 notabug thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 26 05:35:45 2013 Received: (at submit) by debbugs.gnu.org; 26 Jan 2013 10:35:45 +0000 Received: from localhost ([127.0.0.1]:49985 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tz36u-0004Zf-TD for submit@debbugs.gnu.org; Sat, 26 Jan 2013 05:35:45 -0500 Received: from eggs.gnu.org ([208.118.235.92]:47269) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tz36t-0004ZZ-M1 for submit@debbugs.gnu.org; Sat, 26 Jan 2013 05:35:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tz36b-0000rX-NO for submit@debbugs.gnu.org; Sat, 26 Jan 2013 05:35:30 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-101.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, USER_IN_WHITELIST autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:50379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz36b-0000rD-Jk for submit@debbugs.gnu.org; Sat, 26 Jan 2013 05:35:25 -0500 Received: from eggs.gnu.org ([208.118.235.92]:58620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz36Z-00011Z-RG for bug-coreutils@gnu.org; Sat, 26 Jan 2013 05:35:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tz36Y-0000qi-KK for bug-coreutils@gnu.org; Sat, 26 Jan 2013 05:35:23 -0500 Received: from mout.web.de ([212.227.15.3]:58038) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz2Gv-0002XA-HO for bug-coreutils@gnu.org; Sat, 26 Jan 2013 04:42:01 -0500 Received: from 3capp-webde-bs15.server.lan ([172.19.170.15]) by mriweb.server.lan (mriweb001) with ESMTPA (Nemesis) id 0MZ9iU-1UK0V200Q0-00L30I for ; Sat, 26 Jan 2013 10:42:00 +0100 Received: from [137.132.192.186] by 3capp-webde-bs15.server.lan with HTTP; Sat Jan 26 10:41:59 CET 2013 MIME-Version: 1.0 Message-ID: From: =?UTF-8?Q?=22Marcel_B=C3=B6hme=22?= To: bug-coreutils@gnu.org Subject: printf ignores length modifier Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Sat, 26 Jan 2013 10:41:59 +0100 (CET) Importance: normal Sensitivity: Normal X-Priority: 3 X-Provags-ID: V03:K0:OPYIeQKo/klKRKjiFZlbsoSgTkFgvJgCgIyjOeZ2QA8 1fTq66tdOVRxlyrymkiEH4apiYAaidmJnI0Xcao8NqGL8GMdlC 13mlVjXdkqXnzACvowUPoU0cU0F67ImwQxviRzTrQ87ou4ffvn jAOJUZurlPX+r9WJMcAfBDNElNY+Ey+17sxOP0DVBup7Wq4T2U 1jTKRJQbHv5XwgK3jkicyAU9tvyhIne/67yPVOcv0DAAOixvlZ cn+zPdrnUlmBMmXfWH+yJbjElEqlJc5vE2jtWERz7I0SW6EjRz 5d4+Pndy+FHHolLs8zYwnQVTUtj X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 208.118.235.17 X-Spam-Score: -4.2 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Dear all, I've been looking into the semantic changes introduced to printf= with the commit 62e1d5259df82155ae52201678093381a35d898e (08.07.2004) and = found besides a lot of progression (conformance to C99 etc.) the following = oddities: The tool printf ignores length modifiers (cf. http://linux.die.n= et/man/3/printf) In fact, any (combination of) length modifier is substitut= ed by "ll" as length modifier. Is this intended? $old/printf "%hi\n" 0xFFF= F -1 $printf "%hi\n" 0xFFFF 65535 $old/printf=C2=A0 "%hi\n" 0xFFF 4095 $ol= d/printf=C2=A0 "%hhLljtzllhi\n" 0xFFF printf: %h: invalid directive $printf= =C2=A0 "%hhLljtzllhi\n" 0xFFF 4095 On the on hand the comment reads: =C2= =A0332=C2=A0=C2=A0 /* Create a null-terminated copy of the % directive, wit= h an =C2=A0333=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 intmax_t-wide length modifier = substituted for any existing =C2=A0334=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 intege= r length modifier.=C2=A0 */ On the other hand the commit comment reads: > = Add support for C99 'j', 't', 'z' length modifiers (like Bash). Best regar= ds, =C2=A0Marcel PS: http://git.savannah.gnu.org/gitweb/?p=3Dcoreutils.gi= t;a=3Dcommitdiff;h=3D62e1d5259df82155ae52201678093381a35d898e From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 26 11:38:01 2013 Received: (at 13555) by debbugs.gnu.org; 26 Jan 2013 16:38:01 +0000 Received: from localhost ([127.0.0.1]:50603 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tz8lV-0005sh-2w for submit@debbugs.gnu.org; Sat, 26 Jan 2013 11:38:01 -0500 Received: from smtp.cs.ucla.edu ([131.179.128.62]:44558) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tz8lS-0005sV-Hz for 13555@debbugs.gnu.org; Sat, 26 Jan 2013 11:37:59 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 3BCCA39E810A; Sat, 26 Jan 2013 08:37:43 -0800 (PST) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nbcMg9l-IEBe; Sat, 26 Jan 2013 08:37:42 -0800 (PST) Received: from [192.168.1.9] (pool-71-189-154-249.lsanca.fios.verizon.net [71.189.154.249]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id DD42039E8109; Sat, 26 Jan 2013 08:37:42 -0800 (PST) Message-ID: <51040656.5060105@cs.ucla.edu> Date: Sat, 26 Jan 2013 08:37:42 -0800 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: =?UTF-8?B?TWFyY2VsIELDtmhtZQ==?= Subject: Re: bug#13555: printf ignores length modifier References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -1.5 (-) X-Debbugs-Envelope-To: 13555 Cc: 13555@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.5 (-) On 01/26/2013 01:41 AM, Marcel B=C3=B6hme wrote: > $old/printf "%hi\n" 0xFFFF > -1 > $printf "%hi\n" 0xFFFF > 65535 None of these length modifiers are specified by POSIX, so we're talking about what it's more useful for printf to do, rather than whether this is a violation of a standard. coreutils printf should agree with Bash printf, and Bash printf ignores the modifiers, so if we change coreutils we should change Bash too. I suppose that 'printf' could change its behavior, and use (say) 32-bit int for '%li' on a x86 but 64-bit int on x86-64, thus exposing the native machine widths to the user. However, for shell scripts I expect that more people prefer portability to exposing the machine widths, so the current behavior is better. From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 26 19:52:46 2013 Received: (at 13555) by debbugs.gnu.org; 27 Jan 2013 00:52:46 +0000 Received: from localhost ([127.0.0.1]:50884 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TzGUI-0000dD-8H for submit@debbugs.gnu.org; Sat, 26 Jan 2013 19:52:46 -0500 Received: from mout.web.de ([212.227.15.3]:59561) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TzGUG-0000d6-Lt for 13555@debbugs.gnu.org; Sat, 26 Jan 2013 19:52:45 -0500 Received: from [10.236.131.191] ([119.234.0.59]) by smtp.web.de (mrweb001) with ESMTPSA (Nemesis) id 0Lp7HY-1Ubt5p0tVs-00ei3r; Sun, 27 Jan 2013 01:52:26 +0100 References: <51040656.5060105@cs.ucla.edu> In-Reply-To: <51040656.5060105@cs.ucla.edu> Mime-Version: 1.0 (1.0) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Message-Id: <5A8F87A9-05BF-4197-A3EE-0C4CB430831B@web.de> X-Mailer: iPhone Mail (9B206) From: Marcel Boehme Subject: Re: bug#13555: printf ignores length modifier Date: Sun, 27 Jan 2013 08:55:26 +0800 To: Paul Eggert X-Provags-ID: V02:K0:SDbJVgGqOY/WdZymAvf26PJ6wXFkU/rGgvm5WiRq9Wb sCLur8MlVbhMHUvYv11DwHr4ZKyAB0xc4OctGrtxpwOG9dCmnQ +oz8ft1xkFZb7yT/JJDJUvyWG0w7lXCyq1JdaTkI6zMhtYpbkC ptzH7vHNSniDyT2ZU5LIBG/P0guXnblegpoHGIzYn1zcxMvfVp /0uqeU9PfZPDS+9bhgDZA== X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Dear Paul, Then, I suppose, the observed semantic change for the mentioned version pair was _intended_. Found it odd that I didn't find documented that / why length modifiers are 'suddenly' ignored. Thanks for your follow-up! [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (hawkie[at]web.de) 0.8 RCVD_IN_SORBS_WEB RBL: SORBS: sender is an abusable web server [119.234.0.59 listed in dnsbl.sorbs.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.15.3 listed in list.dnswl.org] -0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.5000] 0.0 MIME_QP_LONG_LINE RAW: Quoted-printable line longer than 76 chars X-Debbugs-Envelope-To: 13555 Cc: "13555@debbugs.gnu.org" <13555@debbugs.gnu.org> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Dear Paul, Then, I suppose, the observed semantic change for the mentioned version pair was _intended_. Found it odd that I didn't find documented that / why length modifiers are 'suddenly' ignored. Thanks for your follow-up! [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.8 RCVD_IN_SORBS_WEB RBL: SORBS: sender is an abusable web server [119.234.0.59 listed in dnsbl.sorbs.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.15.3 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (hawkie[at]web.de) -0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.4999] 0.0 MIME_QP_LONG_LINE RAW: Quoted-printable line longer than 76 chars Dear Paul, Then, I suppose, the observed semantic change for the mentioned version pair= was _intended_. Found it odd that I didn't find documented that / why lengt= h modifiers are 'suddenly' ignored. Thanks for your follow-up! Best regards, Marcel On 27 Jan, 2013, at 12:37 AM, Paul Eggert wrote: > On 01/26/2013 01:41 AM, Marcel B=C3=B6hme wrote: >> $old/printf "%hi\n" 0xFFFF >> -1 >> $printf "%hi\n" 0xFFFF >> 65535 >=20 > None of these length modifiers are specified by POSIX, > so we're talking about what it's more useful for printf > to do, rather than whether this is a violation of > a standard. coreutils printf should agree > with Bash printf, and Bash printf ignores the modifiers, > so if we change coreutils we should change Bash too. >=20 > I suppose that 'printf' could change its behavior, and > use (say) 32-bit int for '%li' on a x86 but 64-bit int > on x86-64, thus exposing the native machine widths to > the user. However, for shell scripts I expect that more > people prefer portability to exposing the machine widths, > so the current behavior is better. >=20 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 18 19:28:46 2018 Received: (at 13555) by debbugs.gnu.org; 18 Oct 2018 23:28:46 +0000 Received: from localhost ([127.0.0.1]:57582 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gDHig-0006W7-5R for submit@debbugs.gnu.org; Thu, 18 Oct 2018 19:28:46 -0400 Received: from mail-pl1-f172.google.com ([209.85.214.172]:46817) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gDHie-0006Vt-4b for 13555@debbugs.gnu.org; Thu, 18 Oct 2018 19:28:44 -0400 Received: by mail-pl1-f172.google.com with SMTP id v5-v6so14990582plz.13 for <13555@debbugs.gnu.org>; Thu, 18 Oct 2018 16:28:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=subject:to:cc:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=rOr7bvIifxYlrURYGHJU4elIrxqSIXmb0Yqmz3zl1rU=; b=sWIoe65xj7XVMUAICTB/PdOSWzN5c12IvPXjv40VeABQpa1+lwbm/oi8fWQeidCIKc loRu98Mrl2oRu5TtfjJ+IHWOrl+Jj76PABfK1dLKwI7K0DFqHQzXmaKSiSmWn2QRbMHu PpL5oeRjbj6s8yT/tTmw8AUsz/nFwnw2Yan81OwyUUwTPjjKf5rQxI930GDti4hD/cIQ R8PqgTviScXVRkRhKOahZyx/0scyjLFWgBR5IuQgHu4dUQxC6w2BGfBAcarRuy5rF7/T WVw6wS9ZtHcoLHJOnNvmRo2ta3GtH+byDiXyjv35Xp//i7At9dDProIx3xHtZeBHtsid jazg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=rOr7bvIifxYlrURYGHJU4elIrxqSIXmb0Yqmz3zl1rU=; b=KnLKH8dOnR2DXp271dpDKm/AXxkzht8W/fWFKasxozlLEE2c0Q5rtU5uCwJnSgnMyb Sf9c1IDs1v8hNhx73TVKiFxgfN2dANG0nVljGInKlz6HEWes4v+fXO8Sti1pyA2uypYY 2+562TnBpmIqWyI2to9TG39KXIHP5sH3aZesr1UD3HYg/RSK3mX+9E3PpwDpxk9ejp6c mXfRfSykERp9WLZcjGJQlYJVa49hn/TFBDQUra1rUUTgMdpARD2vgFbrFrnjwkJQK6NJ ZYQhXLcuBuMtimhNPvgClhj/mBv16Xkkx/GpIMcJ6rfoRBFhqdUtHkmEqFz3jBvRGFPY 4/6Q== X-Gm-Message-State: ABuFfojZpHsHrd3LTSDWTv/J3dQkywSg2ZcK/Q9epRopNvwG6H413LC2 nIiuelIZRMrK64JgydGTOMQVLtbP X-Google-Smtp-Source: ACcGV63/Qj/tAVmU63tBOCFI8nLkiKapqxBE0fxGlkofDykqOf9xOrBUDI42Iga2vkK0IFzpewKU0A== X-Received: by 2002:a17:902:6e17:: with SMTP id u23-v6mr32657516plk.28.1539905317294; Thu, 18 Oct 2018 16:28:37 -0700 (PDT) Received: from tomato.housegordon.com (moose.housegordon.com. [184.68.105.38]) by smtp.googlemail.com with ESMTPSA id p1-v6sm32170605pfj.72.2018.10.18.16.28.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 18 Oct 2018 16:28:36 -0700 (PDT) Subject: Re: bug#13555: printf ignores length modifier To: Marcel Boehme , Paul Eggert References: <51040656.5060105@cs.ucla.edu> <5A8F87A9-05BF-4197-A3EE-0C4CB430831B@web.de> From: Assaf Gordon Message-ID: <08b52889-8f3e-f478-5f03-6494f315875c@gmail.com> Date: Thu, 18 Oct 2018 17:28:34 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <5A8F87A9-05BF-4197-A3EE-0C4CB430831B@web.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 13555 Cc: "13555@debbugs.gnu.org" <13555@debbugs.gnu.org> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 13555 notabug close 13555 stop (triaging old bugs) Hello, > Paul Eggert wrote: > >> Marcel Böhme wrote: >>> $old/printf "%hi\n" 0xFFFF >>> -1 >>> $printf "%hi\n" 0xFFFF >>> 65535 >> >> None of these length modifiers are specified by POSIX, >> so we're talking about what it's more useful for printf >> to do, rather than whether this is a violation of >> a standard. On 26/01/13 05:55 PM, Marcel Boehme wrote: > Then, I suppose, the observed semantic change for the mentioned version pair was _intended_. Found it odd that I didn't find documented that / why length modifiers are 'suddenly' ignored. > > Thanks for your follow-up! With no further comments in 5 years, I'm closing this bug. -assaf From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 30 05:28:51 2018 Received: (at control) by debbugs.gnu.org; 30 Oct 2018 09:28:51 +0000 Received: from localhost ([127.0.0.1]:53365 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gHQKQ-0007ol-Pr for submit@debbugs.gnu.org; Tue, 30 Oct 2018 05:28:50 -0400 Received: from mail-it1-f173.google.com ([209.85.166.173]:53461) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gHQKP-0007oW-39 for control@debbugs.gnu.org; Tue, 30 Oct 2018 05:28:49 -0400 Received: by mail-it1-f173.google.com with SMTP id f16-v6so5364074ita.3 for ; Tue, 30 Oct 2018 02:28:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:message-id:date:user-agent:mime-version:content-language :content-transfer-encoding; bh=ML9Ipszv/oGk4uf6s6ij2eOXuz9l0MZDU428EaQZzSc=; b=CN/5VSZG4LnRoyTWykbgH1Y6tRp84ulxFZ9/2qFkVjuWV6zb+tPp5cH+yIs0WhHJnr JaGWPaaO5ULGMPVbYD214AHlWKqbOG2wYXmiVuXyLrVlaNzAtKjZZiQbcHgPUXYNsQ+C KQYV3y32NBz5Y9v7W4pq7dnnYyG7vBTBtB/JPO1q2tIC5tgwa/UvHCm6eAs+Op4riuQm DvKN/sHp9gdu1WBISSoMAzOh6z6oYJYerjxjacJhViPrYYXMCIDZXHo4P9mnMBrGeYgZ QlD4Q1iMa4rJeSK74UUWybxGnalgm3c+izuMlZGJRyesWEg27Med/Ix4nTteSUeauPDG i+1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:message-id:date:user-agent:mime-version :content-language:content-transfer-encoding; bh=ML9Ipszv/oGk4uf6s6ij2eOXuz9l0MZDU428EaQZzSc=; b=bO9oI7tjg6KcXcJya9mLGyenu040oOn5h6xaH8XOsNLyORy4UpQHaptuRm3yWISCE4 7ef3i4MM1EAuBJ/5RstZtm7ejjgPBLek1+PDlhgfcKe2yXmpQ60v2kHuXd5FPJtqYuPv 7CQcKoY6OsPDPp16nGfliEgakps+Ie7a0+fMw1hZTljLYHRe9WAWG8ecEmTC06Kj/5RZ 4c7d32rnSuwaeu0+LedDBGsbUA6GdfohmZ+6XJu54lJKtE/+nzdBLHYh0293MN6ANACx Sw/BsGvsZ6tLZHF3jG+qdwDqT1kM8GV5q6FtIrr+e7/cjO+c8oE2evzSA+kykdgkhhqZ 6Q3w== X-Gm-Message-State: AGRZ1gLlyS6Brv/nMQ6OS+xQ1Ih0pqEgq9R3pUl/iQguwn5lauJ9pLVl jfEvInmkfy0AlJXgHAgZl7jTkPzBZUc= X-Google-Smtp-Source: AJdET5eUfApniy7OlxwCz8QSj0vsrDa0LmNhpfdAbwnYtuEB8SDXVelKJ/bhwPE0e3Q3qs5ehCthAg== X-Received: by 2002:a24:a50f:: with SMTP id k15-v6mr813735itf.24.1540891722919; Tue, 30 Oct 2018 02:28:42 -0700 (PDT) Received: from tomato.housegordon.com (moose.housegordon.com. [184.68.105.38]) by smtp.googlemail.com with ESMTPSA id e78-v6sm8590299itc.4.2018.10.30.02.28.40 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 30 Oct 2018 02:28:41 -0700 (PDT) To: control@debbugs.gnu.org From: Assaf Gordon Message-ID: <85dbdaac-f3b7-15b3-3382-0142109decd1@gmail.com> Date: Tue, 30 Oct 2018 03:28:39 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: tags 13555 notabug close 13555 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [209.85.166.173 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (assafgordon[at]gmail.com) 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) tags 13555 notabug close 13555 From unknown Wed Jun 18 23:16:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 27 Nov 2018 12:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator