From unknown Sun Jun 22 11:40:08 2025 X-Loop: help-debbugs@gnu.org Subject: bug#22185: Operation not permitted for `touch -d` on 777 file Resent-From: Silvio Ricardo Cordeiro Original-Sender: "Debbugs-submit" Resent-CC: bug-coreutils@gnu.org Resent-Date: Wed, 16 Dec 2015 16:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 22185 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: To: 22185@debbugs.gnu.org X-Debbugs-Original-To: bug-coreutils@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.145028410929979 (code B ref -1); Wed, 16 Dec 2015 16:42:01 +0000 Received: (at submit) by debbugs.gnu.org; 16 Dec 2015 16:41:49 +0000 Received: from localhost ([127.0.0.1]:53761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9F9B-0007nT-JT for submit@debbugs.gnu.org; Wed, 16 Dec 2015 11:41:49 -0500 Received: from eggs.gnu.org ([208.118.235.92]:44952) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9DFr-00050B-31 for submit@debbugs.gnu.org; Wed, 16 Dec 2015 09:40:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9DFk-00078o-N6 for submit@debbugs.gnu.org; Wed, 16 Dec 2015 09:40:29 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM, HTML_MESSAGE,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:56740) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9DFk-00078d-Id for submit@debbugs.gnu.org; Wed, 16 Dec 2015 09:40:28 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9DFj-0004ub-F6 for bug-coreutils@gnu.org; Wed, 16 Dec 2015 09:40:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9DFe-00071P-Cm for bug-coreutils@gnu.org; Wed, 16 Dec 2015 09:40:27 -0500 Received: from mail-ig0-x236.google.com ([2607:f8b0:4001:c05::236]:35978) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9DFe-00070R-8c for bug-coreutils@gnu.org; Wed, 16 Dec 2015 09:40:22 -0500 Received: by mail-ig0-x236.google.com with SMTP id ph11so144945382igc.1 for ; Wed, 16 Dec 2015 06:40:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=27rWJWGG3mBSQSkx22m2KMEgxIJuY/f98ZBqNLsNdLQ=; b=VpZJe1lJjR8t1kzImKbinGou2B4dajKYY/WkJbQ2wQ4u10XOxCx/C8wsvuNpGOxA1/ FEkIQY0NzVy/pV8D41+k24//xbw6XoKhrSyLFe0SUgYbZ/DxlltGtQhE8zuTZCyQ828V /LQ4fuH5OvKw9NM3qlfyWLxqJwESpRgma2WPRJhLYanTBaM3exEHO0NisUU5ARXb7Jx2 IhuDG1SfZcFl2TElVOdmSPD1kVtuhnht2UI6niH7wcm2mMj/BS3zGgzsn+VeYCDR0M/i BM/PlC7B1jC5IT7He0QXuUf50L0naXlXc73bUO8QKcZQY11J7XxAWUoWgFKv5St1se8I xQhg== X-Received: by 10.50.78.9 with SMTP id x9mr10551542igw.12.1450276821452; Wed, 16 Dec 2015 06:40:21 -0800 (PST) MIME-Version: 1.0 Received: by 10.36.32.200 with HTTP; Wed, 16 Dec 2015 06:39:41 -0800 (PST) From: Silvio Ricardo Cordeiro Date: Wed, 16 Dec 2015 12:39:41 -0200 Message-ID: Content-Type: multipart/alternative; boundary=089e0115f638c4d061052704e2c0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Mailman-Approved-At: Wed, 16 Dec 2015 11:41:47 -0500 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: -4.0 (----) --089e0115f638c4d061052704e2c0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable The following code fails whenever the specified date is different from `now`: $ mkdir testdir; chmod 777 testdir; cd testdir $ touch file; chmod 777 file $ su another_user $ touch -d 'now' file # works $ touch -d 'yesterday' file # fails touch: setting times of =E2=80=98file=E2=80=99: Operation not permitted I see no description of that in the documentation, and it just seems wrong. If other users have full control over the file (and surrounding directory), shouldn't they be able to change its date? The same behavior is seen with `touch -t`. Best, --=20 Silvio Ricardo Cordeiro --089e0115f638c4d061052704e2c0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
The following code fails whenever the specified date = is different from `now`:

$ mkdir testdir; chmod 777 tes= tdir; cd testdir
$ touch file; chmod 777=C2=A0file
$ su anothe= r_user
$ touch -d 'now'=C2=A0file =C2=A0# works
<= div>$ touch -d 'yesterday'=C2=A0file =C2=A0# fails
touch: setting times of =E2=80=98file=E2=80=99: Operat= ion not permitted

I see no descr= iption of that in the documentation, and it just seems wrong. If other user= s have full control over the file (and surrounding directory), shouldn'= t they be able to change its date?

The same behavi= or is seen with `touch -t`.

Best,
--
Silvio Ricardo Cordeiro
--089e0115f638c4d061052704e2c0-- From unknown Sun Jun 22 11:40:08 2025 X-Loop: help-debbugs@gnu.org Subject: bug#22185: Operation not permitted for `touch -d` on 777 file Resent-From: Assaf Gordon Original-Sender: "Debbugs-submit" Resent-CC: bug-coreutils@gnu.org Resent-Date: Wed, 16 Dec 2015 18:19:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 22185 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: To: Silvio Ricardo Cordeiro , 22185@debbugs.gnu.org Received: via spool by 22185-submit@debbugs.gnu.org id=B22185.145028994112352 (code B ref 22185); Wed, 16 Dec 2015 18:19:02 +0000 Received: (at 22185) by debbugs.gnu.org; 16 Dec 2015 18:19:01 +0000 Received: from localhost ([127.0.0.1]:53811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9GfF-0003DA-95 for submit@debbugs.gnu.org; Wed, 16 Dec 2015 13:19:01 -0500 Received: from mail-qg0-f51.google.com ([209.85.192.51]:33708) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9GfD-0003Cy-QK for 22185@debbugs.gnu.org; Wed, 16 Dec 2015 13:19:00 -0500 Received: by mail-qg0-f51.google.com with SMTP id k90so8026468qge.0 for <22185@debbugs.gnu.org>; Wed, 16 Dec 2015 10:18:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-type:content-transfer-encoding; bh=0a4AUfXTWqePKU57f+96zw8nLldanyXtZckoaRKyneo=; b=kkETUrBv8t+AtxaAAnHoNl36R08WH60Mu/ngpeIiuhEpF56wC1G1+iM+HFgy2sRaiX yzX3PsFhts00VHTKVOekrorpsDzmlr+9jXj2p4LtfagRux38j4szkMZPMn7UAOJxNP+J bjBJI7aLy6NhZAPoRbP5R0UZkJ7NQkUa7eIqfZg+8guRuMZ80+6al+e+cwQJooAq7XCk IQ5S+145DiiYFBwttYuM2TR16JqwtqA0Aceeq3KBfevy0mLEpSUHDTdHCO0JRqc0WjyV Vz/tsO8+TAak6DvMp6Fp/aF2Wa3eC9vAwDxTpjpRE+/sagVCLfBoTAFlEpWPK6Rz/OQ1 RIVQ== X-Received: by 10.140.234.17 with SMTP id f17mr13910246qhc.19.1450289934434; Wed, 16 Dec 2015 10:18:54 -0800 (PST) Received: from disco.erlich.nygenome.org ([69.74.14.178]) by smtp.googlemail.com with ESMTPSA id v129sm3038958qhb.0.2015.12.16.10.18.53 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 16 Dec 2015 10:18:53 -0800 (PST) References: From: Assaf Gordon Message-ID: <5671AB4F.8090602@gmail.com> Date: Wed, 16 Dec 2015 13:19:59 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) 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: -0.7 (/) Hello, On 12/16/2015 09:39 AM, Silvio Ricardo Cordeiro wrote: > The following code fails whenever the specified date is different from `now`: > > $ mkdir testdir; chmod 777 testdir; cd testdir > $ touch file; chmod 777 file > $ su another_user > $ touch -d 'now' file # works > $ touch -d 'yesterday' file # fails > touch: setting times of ‘file’: Operation not permitted > > I see no description of that in the documentation, and it just seems wrong. If other users have full control over the file (and surrounding directory), shouldn't they be able to change its date? > Trying first to reproduce and understand the issue, I'm seeing this: 1. When running with 'now', the utimensat(2) syscall is passed NULL as the timespec parameter: $ strace -e utimensat touch -d 'now' file utimensat(0, NULL, NULL, 0) = 0 +++ exited with 0 +++ 2. When running with 'yesterday', the syscall is passed a timespec containing a specific time: $ strace -e utimensat touch -d 'yesterday' file utimensat(0, NULL, {{1450202605, 538896888}, {1450202605, 538896888}}, 0) = -1 EPERM (Operation not permitted) touch: setting times of ‘file’: Operation not permitted +++ exited with 1 +++ 3. This coincides with the touch.c code ( http://lingrok.org/xref/coreutils/src/touch.c#157 ), with the following comment: 157 if (amtime_now) 158 { 159 /* Pass NULL to futimens so it will not fail if we have 160 write access to the file, but don't own it. */ 161 t = NULL; 162 } 4. The linux kernel syscall (if I traced the flow correctly) ends up in 'utimes_common' ( http://lingrok.org/xref/linux-linus/fs/utimes.c#51 ). The code block that is executed with timespec=NULL is this ( http://lingrok.org/xref/linux-linus/fs/utimes.c#89 ): 90 /* 91 * If times is NULL (or both times are UTIME_NOW), 92 * then we need to check permissions, because 93 * inode_change_ok() won't do it. 94 */ 95 error = -EACCES; 96 if (IS_IMMUTABLE(inode)) 97 goto mnt_drop_write_and_out; 98 99 if (!inode_owner_or_capable(inode)) { 100 error = inode_permission(inode, MAY_WRITE); 101 if (error) 102 goto mnt_drop_write_and_out; 103 } Which seems to indicate that if the request is to change the time to 'now' using NULL (as opposed to the spelled-out timespec value that is equivalent to the current time), then the permission check go through a slightly different code path (using 'inode_permissions(..., MAY_WRITE)'), and perhaps checking for write-permissions (which you have) as opposed to ownership (which you don't). If the above is correct, then this is not a bug in coreutils' touch per-se, but a linux kernel behavior. Comments very welcomed, regards, - assaf From unknown Sun Jun 22 11:40:08 2025 X-Loop: help-debbugs@gnu.org Subject: bug#22185: Operation not permitted for `touch -d` on 777 file Resent-From: Assaf Gordon Original-Sender: "Debbugs-submit" Resent-CC: bug-coreutils@gnu.org Resent-Date: Wed, 16 Dec 2015 18:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 22185 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: To: Silvio Ricardo Cordeiro , 22185@debbugs.gnu.org Received: via spool by 22185-submit@debbugs.gnu.org id=B22185.145029041313075 (code B ref 22185); Wed, 16 Dec 2015 18:27:01 +0000 Received: (at 22185) by debbugs.gnu.org; 16 Dec 2015 18:26:53 +0000 Received: from localhost ([127.0.0.1]:53819 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9Gmr-0003Op-Ds for submit@debbugs.gnu.org; Wed, 16 Dec 2015 13:26:53 -0500 Received: from mail-qg0-f47.google.com ([209.85.192.47]:36449) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9Gmp-0003Oc-JS for 22185@debbugs.gnu.org; Wed, 16 Dec 2015 13:26:51 -0500 Received: by mail-qg0-f47.google.com with SMTP id 103so41338969qgi.3 for <22185@debbugs.gnu.org>; Wed, 16 Dec 2015 10:26:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-type:content-transfer-encoding; bh=k5d2ew2VqsbFyMpwUIGr/F3Arq9gzCW90qcnSPm20Ik=; b=y9AatteFZcH+dV03Oe0M3SP5O2/jXFyZ3EHsJ7g0isNblnb7iErQQItTHhbvE5TW+B GJqExX13xXXoHLLuykfVs7DdmxudVuCXFapqZZVcY3tyKltjmgcSDIfAz8yhX9+Rgg+5 RilYV/qCjMVXeG/0cts6u6rpidF51kuuawI4Da/vrdkGhBwEa5TtC0fA1QUwx1vuT4pe Wmbt3rpXk1ybmrFPVSiqegDTfAcpiHlF+EwmHYtXQZ9gY8UwyhBVHCxJoIdWj5d8k9Yf nBa0b6uo3fDtYrPG0u8bYF6suOOhisdxz1Zo0IpTrOT9u8U38LtujK7JhYjiOdzFkULZ tZYQ== X-Received: by 10.141.7.69 with SMTP id j66mr58071451qhd.2.1450290406247; Wed, 16 Dec 2015 10:26:46 -0800 (PST) Received: from disco.erlich.nygenome.org ([69.74.14.178]) by smtp.googlemail.com with ESMTPSA id 81sm3045885qhx.15.2015.12.16.10.26.45 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 16 Dec 2015 10:26:45 -0800 (PST) References: <5671AB4F.8090602@gmail.com> From: Assaf Gordon Message-ID: <5671AD26.1070104@gmail.com> Date: Wed, 16 Dec 2015 13:27:50 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <5671AB4F.8090602@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.7 (/) 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: -0.7 (/) tag 22185 notabug close 22185 stop Additional information: On 12/16/2015 01:19 PM, Assaf Gordon wrote: > Hello, > > On 12/16/2015 09:39 AM, Silvio Ricardo Cordeiro wrote: >> The following code fails whenever the specified date is different from `now`: <...> >> >> I see no description of that in the documentation, and it just seems wrong. If other users have full control over the file (and surrounding directory), shouldn't they be able to change its date? <...> > If the above is correct, then this is not a bug in coreutils' touch per-se, but a linux kernel behavior. I should've looked first at the man page... which states it clearly: from 'man 2 utimesnsat' : ==== Permissions requirements To set both file timestamps to the current time (i.e., times is NULL, or both tv_nsec fields specify UTIME_NOW), either: 1. the caller must have write access to the file; 2. the caller's effective user ID must match the owner of the file; or 3. the caller must have appropriate privileges. To make any change other than setting both timestamps to the current time (i.e., times is not NULL, and both tv_nsec fields are not UTIME_NOW and both tv_nsec fields are not UTIME_OMIT), either condition 2 or 3 above must apply. ==== Which means write access (condition 1) is not sufficient to set the time to anything except 'now'. Therefor it is not a coreutils bug - but a linux kernel requirement. As such, I'm making this as 'closed' - but discussion is welcomed to continue. regards, - assaf From unknown Sun Jun 22 11:40:08 2025 X-Loop: help-debbugs@gnu.org Subject: bug#22185: Operation not permitted for `touch -d` on 777 file Resent-From: Paul Eggert Original-Sender: "Debbugs-submit" Resent-CC: bug-coreutils@gnu.org Resent-Date: Wed, 16 Dec 2015 21:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 22185 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: To: Silvio Ricardo Cordeiro , 22185@debbugs.gnu.org Received: via spool by 22185-submit@debbugs.gnu.org id=B22185.145029960127216 (code B ref 22185); Wed, 16 Dec 2015 21:00:02 +0000 Received: (at 22185) by debbugs.gnu.org; 16 Dec 2015 21:00:01 +0000 Received: from localhost ([127.0.0.1]:53908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9JB3-00074u-2L for submit@debbugs.gnu.org; Wed, 16 Dec 2015 16:00:01 -0500 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:38089) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a9JB1-00074h-Jd for 22185@debbugs.gnu.org; Wed, 16 Dec 2015 16:00:00 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 8E485160D24; Wed, 16 Dec 2015 12:59:53 -0800 (PST) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id DZoxpDvy3Rj8; Wed, 16 Dec 2015 12:59:52 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id E688E160DFA; Wed, 16 Dec 2015 12:59:52 -0800 (PST) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id AE-aGtgZgnpB; Wed, 16 Dec 2015 12:59:52 -0800 (PST) Received: from [192.168.1.9] (pool-100-32-155-148.lsanca.fios.verizon.net [100.32.155.148]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id C7284160D24; Wed, 16 Dec 2015 12:59:52 -0800 (PST) References: From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: <5671D0C8.5000900@cs.ucla.edu> Date: Wed, 16 Dec 2015 12:59:52 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) 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: -0.0 (/) Silvio Ricardo Cordeiro wrote: > If other users have full control over the file (and surrounding directory), > shouldn't they be able to change its date? Mode 777 does not mean full control; it merely means read, write, and execute access is granted to everybody. Other users still cannot chmod the file, for example; nor can they set the file's time stamps in arbitrary ways. From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 24 17:36:19 2018 Received: (at control) by debbugs.gnu.org; 24 Oct 2018 21:36:19 +0000 Received: from localhost ([127.0.0.1]:40813 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gFQp8-0000dZ-SC for submit@debbugs.gnu.org; Wed, 24 Oct 2018 17:36:19 -0400 Received: from mail-pg1-f169.google.com ([209.85.215.169]:33158) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gFQp6-0000dN-KR for control@debbugs.gnu.org; Wed, 24 Oct 2018 17:36:16 -0400 Received: by mail-pg1-f169.google.com with SMTP id z2-v6so2965646pgp.0 for ; Wed, 24 Oct 2018 14:36:16 -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=wID506kDIiYyF9Khu7ta8EVqqNGFb9EXxrmUJTiJfyQ=; b=IvrgvwbN7D8qZoU1ko7mOusIjn2wmRMd0Zp8Wgk4os2kUuTEjIP7H1J8Qap/CsVIDB yJKukf0uo5Prt4Hpta4hH8x7qE7K2FQfHV3YrokdKPCkXyIg4kXT3U0ukj0sMopSVfYv FNS9XX4nwUgks+YkmgCREkl6I51GGVcO/WtXTxvpB8TJJLQaMbAPo9ikC3NcacswKM1P b23IYdnRIUUaLqKmS/U3MAkyG8hZziMrhMFNOHTK8+6bwg2Ssja4QAQACT91Ap9gCiDc kXsvoOQRd4TuOIPO2nGQClsNcF4ffc5MSVG8E8QboGzusv+6/Xg3FEcJF4FNdVOns3mh AmLA== 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=wID506kDIiYyF9Khu7ta8EVqqNGFb9EXxrmUJTiJfyQ=; b=uEgjLOY+pXFbmexnrO7tzWEmi1Huv8k32Gb1mu5AuBH0BmLJMY6y4vSDgmMDs7/BVR 0kx/1m6Vip1fmOWOBph9s4WCAIiN7Xgu3wqpC4iuCN3YCaEANnP54yAUeoDgIyBHVLVv 0SQUBT81hJNUTlpcPfEJDrimz69aTk+GrhP6a/NmLYOvF8Ves/Kt9SIMAnsKbCEUePbn 49Fa+l5320GuYz0aPxBAKY2phN9MPIOhDgMInsS+K7WOxbRu8HW5mIypwUWmG2Sao5uu R9moCx4Jgx5aM271NDS1Ixqg5swswWnh4/eIHnYd0LIo3cjDjq7lnZRQRsPej9AnCdOA jXDg== X-Gm-Message-State: AGRZ1gJsJUJrS5zlBWeTa5pL66oWsPiZ+62iFxhBfObNtsBi4zE+XWdV HxL+OHy6OwWLcwl/anmSH0vyIXuBFHg= X-Google-Smtp-Source: AJdET5cvM31B8EHqBldGxa2E92dElUcokV6UXZDD7QQaOqrtJkJ/doHB3wFUDYNLLRw5z9sPN77Trw== X-Received: by 2002:a63:d00b:: with SMTP id z11-v6mr4102932pgf.317.1540416970368; Wed, 24 Oct 2018 14:36:10 -0700 (PDT) Received: from tomato.housegordon.com (moose.housegordon.com. [184.68.105.38]) by smtp.googlemail.com with ESMTPSA id u65-v6sm6559159pfb.144.2018.10.24.14.36.05 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 Oct 2018 14:36:09 -0700 (PDT) To: control@debbugs.gnu.org From: Assaf Gordon Message-ID: <3cee0337-8745-9af7-8e63-da02cc00de0a@gmail.com> Date: Wed, 24 Oct 2018 15:36:05 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.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 22185 notabug close 22185 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (assafgordon[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.215.169 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [209.85.215.169 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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 22185 notabug close 22185