
From nobody Wed Feb  1 02:06:07 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.354
X-Spam-Level: 
X-Spam-Status: No, score=-6.354 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=hlFhko5G8p4aspk6VKhdD7PBltc=; b=cfCy6NtBr74Pku5K gjas8CN7DumCpyAFAfbzV2nALiV/IISLqC/RA5NZSaHlM2tO3VhtbF0JrevHvjDi Syv9gR4cwhXWP021c1doiCeJPiIHhwnT6ixfMQtQcibUc+eLc5IdbfvaycCQmKBQ OAa2pv+xuyAOBQ1dAAb8YIumcrw=
Date: Wed, 01 Feb 2017 02:05:53 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5891b301eb45c_6dfb3ff6a5d5d1403551d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/KTAkb5hZOOvjqtqRZ09aIT1bog0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3229.1485943565.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 10:06:05 -0000

----==_mimepart_5891b301eb45c_6dfb3ff6a5d5d1403551d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.

This all assumes use of `https`.  That's probably an error because for `http` you have just provided a perfect hijacking mechanism.  We already have enough of those for cleartext HTTP thanks very much :)

I would strongly recommend explicitly limiting this feature to `https` based on the current changes.

> @@ -101,49 +106,65 @@ REMOVE (0x2):
 The set of origins (as per {{!RFC6454}}) that a given connection might be used for is known in this
 specification as the Origin Set.
 
-When a connection is first established, its Origin Set is defined to be those origins that the client would normally consider the connection authoritative for; see {{!RFC7540}}, Section 10.1.
+When a connection is first established, its Origin Set is defined to be the origin composed from:
+  - Scheme: "https"
+  - Host: the value sent in Server Name Indication {{!RFC6066}}
+  - Port: the local port of the connection on the server
+
+If SNI is not sent, the Origin Set is empty when the connection is established.

This is a retroactive change to h2.  It says that you can't coalesce.  It also says that you can't *use* a connection if you didn't use SNI.  I think that you need to include some weasel-words about how this doesn't really apply until the first ORIGIN frame is sent or received.

>     2. If the REMOVE flag is set, remove any member of the Origin Set that is the same as `parsed_origin` (as per {{!RFC6454}}, Section 5), and continue to the next `parsed_origin`.
    3. Otherwise, add `parsed_origin` to the Origin Set.
 
 
 # Security Considerations
 
 Clients that blindly trust the ORIGIN frame's contents will be vulnerable to a large number of
-attacks; hence the reinforcement that this specification does not relax the requirement for server
-authority in {{?RFC7540}}, Section 10.1.
+attacks.

Rather than simple removal, I would add:

> Though this document removes the requirement on clients to ensure that the DNS refers to the same IP address, it does not remove the requirement for certificate-based authentication.  A client MUST validate a server IP address.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250
----==_mimepart_5891b301eb45c_6dfb3ff6a5d5d1403551d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<p>This all assumes use of <code>https</code>.  That's probably an error because for <code>http</code> you have just provided a perfect hijacking mechanism.  We already have enough of those for cleartext HTTP thanks very much :)</p>
<p>I would strongly recommend explicitly limiting this feature to <code>https</code> based on the current changes.</p><hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -101,49 +106,65 @@ REMOVE (0x2):
 The set of origins (as per {{!RFC6454}}) that a given connection might be used for is known in this
 specification as the Origin Set.
 
-When a connection is first established, its Origin Set is defined to be those origins that the client would normally consider the connection authoritative for; see {{!RFC7540}}, Section 10.1.
+When a connection is first established, its Origin Set is defined to be the origin composed from:
+  - Scheme: &quot;https&quot;
+  - Host: the value sent in Server Name Indication {{!RFC6066}}
+  - Port: the local port of the connection on the server
+
+If SNI is not sent, the Origin Set is empty when the connection is established.
</pre>
<p>This is a retroactive change to h2.  It says that you can't coalesce.  It also says that you can't <em>use</em> a connection if you didn't use SNI.  I think that you need to include some weasel-words about how this doesn't really apply until the first ORIGIN frame is sent or received.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;     2. If the REMOVE flag is set, remove any member of the Origin Set that is the same as `parsed_origin` (as per {{!RFC6454}}, Section 5), and continue to the next `parsed_origin`.
    3. Otherwise, add `parsed_origin` to the Origin Set.
 
 
 # Security Considerations
 
 Clients that blindly trust the ORIGIN frame&#39;s contents will be vulnerable to a large number of
-attacks; hence the reinforcement that this specification does not relax the requirement for server
-authority in {{?RFC7540}}, Section 10.1.
+attacks.
</pre>
<p>Rather than simple removal, I would add:</p>
<blockquote>
<p>Though this document removes the requirement on clients to ensure that the DNS refers to the same IP address, it does not remove the requirement for certificate-based authentication.  A client MUST validate a server IP address.</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPux5xYXLKWGnODd2HBYQvenwYdoks5rYFkBgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBemUdW0iGEJeTlTHiJ-mm9L-SS7ks5rYFkBgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19514250"}}}</script>
----==_mimepart_5891b301eb45c_6dfb3ff6a5d5d1403551d0--


From nobody Wed Feb  1 05:04:30 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.036
X-Spam-Level: 
X-Spam-Status: No, score=-7.036 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=xwCLHyoYPWN11ci+nyFk62DIeY8=; b=BCe1tlU5YWYMrMY0 qOe7Csx7u67L0DXMiY8fpFo9pk3zEi6OwxorWd0io9MrYJwJmHI/Sjqbe8gEwVes WuJyWJr875QT3NVFPenSxN94YiK67n0kiqRhnD9Ir7ZgSwAfOvn+VtYggHdorJqb dQADdyG5Ai79PleC1pmZDVEhsmw=
Date: Wed, 01 Feb 2017 05:04:12 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/277@github.com>
References: <httpwg/http-extensions/pull/277@github.com>
Subject: Re: [httpwg/http-extensions] make title consistent with WG terminology (#277)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5891dccca17f5_78e3fe3b18df138204c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/KOHBQGj7mQ2xqDoRC_6PypqiTvE>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3260.1485954269.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 13:04:29 -0000

----==_mimepart_5891dccca17f5_78e3fe3b18df138204c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I have struggled with the naming from the start, and am open to any suggestions on that, with the single caveat that making the name too long is probably not a good idea without at good acronym.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/277#issuecomment-276652251
----==_mimepart_5891dccca17f5_78e3fe3b18df138204c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I have struggled with the naming from the start, and am open to any suggestions on that, with the single caveat that making the name too long is probably not a good idea without at good acronym.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/277#issuecomment-276652251">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMXlry7QgRkqvVKTIEW3037rAiOCks5rYILMgaJpZM4LIsRH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyHQTq3vjgOvMdas9n5V3-wB2DxQ3ks5rYILMgaJpZM4LIsRH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/277#issuecomment-276652251"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@bsdphk in #277: I have struggled with the naming from the start, and am open to any suggestions on that, with the single caveat that making the name too long is probably not a good idea without at good acronym."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/277#issuecomment-276652251"}}}</s
 cript>
----==_mimepart_5891dccca17f5_78e3fe3b18df138204c--


From nobody Wed Feb  1 05:07:42 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.901
X-Spam-Level: 
X-Spam-Status: No, score=-4.901 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 05:07:38 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1485954458; bh=WwnPkVpIsh3SKZ0nWXvPUQ1WO5Ccc4cUBsk1MHCOtHQ=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kLCDsKcX7QnesK4CV9HtyZd9YI73C85QoD3ccn+2Oz6/c/0iI1si1U9QGqOG8WrR5 eH6HoXSIKtsagFXz6Eko3CUD+ecp318c9OSzndLIpVZuuYmXqunny8ZBysxDCCWmuW SEnFA+fKkE6ea5hWKfblukR6Ihvl+aLspR2fjrAM=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/282@github.com>
References: <httpwg/http-extensions/issues/282@github.com>
Subject: Re: [httpwg/http-extensions] Normalization for parameters (#282)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5891dd9ab3c4b_16b73f86ac88d138974be"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/0xlYc9wfUjfTqPFDUEz5mV1Gndw>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3261.1485954462.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 13:07:41 -0000

----==_mimepart_5891dd9ab3c4b_16b73f86ac88d138974be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I can see a point of automatically "promoting" an ascii-string to identifier if removing the quotes would make it one.

For the remaining questions I think the individual header definition should sort that out.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/282#issuecomment-276652837
----==_mimepart_5891dd9ab3c4b_16b73f86ac88d138974be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I can see a point of automatically "promoting" an ascii-string to iden=
tifier if removing the quotes would make it one.</p>
<p>For the remaining questions I think the individual header definition s=
hould sort that out.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/282#issuecomment-276652837">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
HAh-lLq18IZARv8NwabY7G-On3Aks5rYIOagaJpZM4LlMUQ">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyBqg4j7qemxiN9IU0FFdqhRAHysIks5rYIOagaJpZM4LlMUQ.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/282#issuecomment-276652837"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@b=
sdphk in #282: I can see a point of automatically \"promoting\" an ascii-=
string to identifier if removing the quotes would make it one.\r\n\r\nFor=
 the remaining questions I think the individual header definition should =
sort that out."}],"action":{"name":"View Issue","url":"https://github.com=
/httpwg/http-extensions/issues/282#issuecomment-276652837"}}}</script>=

----==_mimepart_5891dd9ab3c4b_16b73f86ac88d138974be--


From nobody Wed Feb  1 05:08:38 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.037
X-Spam-Level: 
X-Spam-Status: No, score=-6.037 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 05:08:35 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1485954515; bh=7l4+qt2987cpIgD4OSdMTnKwkTmDRLesuY3/0Ih2/TY=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XqVTEVqIuTpeGA707AWZVA5fCO19n3sbZU8ZF2VMM2gJbv4OuD33adr+gGsny7Q5V K0zzIRHZBGLKAUJ5fqrP5hsLQUIuZklNah6lm+1ynuwhMJBVo3EjWJmJE6j4bRf/ta u7r8fh9S0dJqq4XkTKUvzoGHmOUNDj4TgaEM/v7U=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/281@github.com>
References: <httpwg/http-extensions/issues/281@github.com>
Subject: Re: [httpwg/http-extensions] Can dictionary keys repeat? (#281)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5891ddd3271d7_84a3f9fa01c514034231b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/srgc_XlOp4J4YXNjppsEhC1A_e4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3262.1485954517.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 13:08:37 -0000

----==_mimepart_5891ddd3271d7_84a3f9fa01c514034231b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I have added the following text:

```
Key identifiers in dictionaries SHALL be unique, but semantically
overlapping key identifiers for instance 'text/plain' and 'text/*'
are ok.
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/281#issuecomment-276653016
----==_mimepart_5891ddd3271d7_84a3f9fa01c514034231b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I have added the following text:</p>
<pre><code>Key identifiers in dictionaries SHALL be unique, but semantica=
lly
overlapping key identifiers for instance 'text/plain' and 'text/*'
are ok.
</code></pre>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/281#issuecomment-276653016">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
ONpYLJv01OkcDPKy0tfgJjBdHMYks5rYIPTgaJpZM4LcS_d">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyM4z3TUbOCptrn-E4TBplxLT9Sejks5rYIPTgaJpZM4LcS_d.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/281#issuecomment-276653016"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@b=
sdphk in #281: I have added the following text:\r\n\r\n```\r\nKey identif=
iers in dictionaries SHALL be unique, but semantically\r\noverlapping key=
 identifiers for instance 'text/plain' and 'text/*'\r\nare ok.\r\n```\r\n=
"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-e=
xtensions/issues/281#issuecomment-276653016"}}}</script>=

----==_mimepart_5891ddd3271d7_84a3f9fa01c514034231b--


From nobody Wed Feb  1 05:08:44 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.036
X-Spam-Level: 
X-Spam-Status: No, score=-7.036 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=fEX7/ZdWAcPKWgAfAqxg20Adc18=; b=bbuTPppgRw5BTmev kSNIFq1+0NUEmFDheI8sEyQB3q+xFk48Bj8x7BiN2UIe6EeuMPEFsDltEk374Gtc 1OxRZ48TM6RMyeO6OLky1CLdu1njFyX2FJZKiYAbOvQHjM8LV1Ce0jj7k/CBdHpe LsdGP5qvwHlXI1UGJ+j0jqPCuxk=
Date: Wed, 01 Feb 2017 05:08:35 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/281@github.com>
References: <httpwg/http-extensions/issues/281@github.com>
Subject: Re: [httpwg/http-extensions] Can dictionary keys repeat? (#281)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5891ddd34462e_375e3f977e1d91384521df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/vaT7Kg-t4sV7FLZoE37wd-Ek4iM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3263.1485954522.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 13:08:38 -0000

----==_mimepart_5891ddd34462e_375e3f977e1d91384521df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #281.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/281#event-944709033
----==_mimepart_5891ddd34462e_375e3f977e1d91384521df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a href="https://github.com/httpwg/http-extensions/issues/281" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/281" data-id="199098919" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#281</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/281#event-944709033">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyONpYLJv01OkcDPKy0tfgJjBdHMYks5rYIPTgaJpZM4LcS_d">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyM4z3TUbOCptrn-E4TBplxLT9Sejks5rYIPTgaJpZM4LcS_d.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/281#event-944709033"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Closed #281."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/281#event-944709033"}}}</script>
----==_mimepart_5891ddd34462e_375e3f977e1d91384521df--


From nobody Wed Feb  1 14:38:42 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.6
X-Spam-Level: 
X-Spam-Status: No, score=-3.6 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=bwUvA1qIloeUoEXkgK0t2nngfbU=; b=GFfg5WPV29RfHglo GixSv32Aq7JQAUBQV6Nf+Sz/J9npTFYuuJUfepPEYnCExK1Z5FP0MaJwOxEf65EX ifTaMa8CwDPAjrMmcDYmjZj+e5tayXIBt8pVbY+nuTfxpjNJEJ9zYCqtXl1fQnEN 4IXbh2QYRU7FBu5dFU/16VkDkOU=
Date: Wed, 01 Feb 2017 14:38:02 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/281@github.com>
References: <httpwg/http-extensions/issues/281@github.com>
Subject: Re: [httpwg/http-extensions] Can dictionary keys repeat? (#281)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892634a40c7b_424e3fe4af94d13433909d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/8FwUlLQysCOkm40QXdDd_cCSHI0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3451.1485988721.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Feb 2017 22:38:41 -0000

----==_mimepart_5892634a40c7b_424e3fe4af94d13433909d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This invalidates the choice in QUIC, see https://quicwg.github.io/base-drafts/draft-ietf-quic-http.html#rfc.section.2.1

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/281#issuecomment-276806055
----==_mimepart_5892634a40c7b_424e3fe4af94d13433909d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This invalidates the choice in QUIC, see <a href="https://quicwg.github.io/base-drafts/draft-ietf-quic-http.html#rfc.section.2.1">https://quicwg.github.io/base-drafts/draft-ietf-quic-http.html#rfc.section.2.1</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/281#issuecomment-276806055">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDHzVXbJ4WIX4TDlnwBtYMmQmlRxks5rYQlKgaJpZM4LcS_d">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyFG4qDgb3EyyzhCR4ce0sjTLryE1ks5rYQlKgaJpZM4LcS_d.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/281#issuecomment-276806055"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson in #281: This invalidates the choice in QUIC, see https://quicwg.github.io/base-drafts/draft-ietf-quic-http.html#rfc.section.2.1"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/281#issuecomment-276806055"}}}</script>
----==_mimepart_5892634a40c7b_424e3fe4af94d13433909d--


From nobody Wed Feb  1 16:56:13 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.038
X-Spam-Level: 
X-Spam-Status: No, score=-6.038 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 16:56:09 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1485996969; bh=UArMJnWKUgV9TXLOKaZRMA/uZaQrzaXrmuumzNspBUc=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bVIzFCtMb4nqbEN/5m/wGgD2mWIKW96RFUq3gK827lPivXoBd4kwp6v+boIvd+pQE KzIQae8/nlV56R9VeFxHCxvopJAWgV2vFYXMaAApTVasVMs4KR8VzeHKSSTpzmWkj0 2PD/GWRn3ZMa6VmbTjHm8Xi4hGr5oTqZoy+kQWiw=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589283a910a0f_f873fc3278d7140183677"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/_hPSBsNJYoHp61rbCtZQYojMjAE>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3506.1485996972.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 00:56:12 -0000

----==_mimepart_589283a910a0f_f873fc3278d7140183677
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

eaa6a4b  note unicode


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/241ce50734215f15c7af2e65921e710d8f977638..eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa

----==_mimepart_589283a910a0f_f873fc3278d7140183677
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/eaa6a4b" class="commit-link">eaa6a4b</a>  note unicode</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/241ce50734215f15c7af2e65921e710d8f977638..eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDiDK2qTVdJF2k3DKyWhgBRkP5trks5rYSmpgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyIjyG9YeoWcVlai704F2wP3UVqXEks5rYSmpgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/241ce50734215f15c7af2e65921e710d8f977638..eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/241ce50734215f15c7af2e65921e710d8f977638..eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa"}}}</script>

----==_mimepart_589283a910a0f_f873fc3278d7140183677--


From nobody Wed Feb  1 18:20:49 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.037
X-Spam-Level: 
X-Spam-Status: No, score=-7.037 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=h5Ruyr8/NCr+O0kWyUOHeKwZmAs=; b=dJhft9cFvZkSlk+T FaB/AXPXmBB1HRyMeGjQ9rF2CkSWI0hrOJ2Hvr/pQwpjfFYDcxhC6MHJkzCM1TRH EVXvEqRIq/+rtpsBje5/MxJcriXlOsFz7nYL5GE9Zf45TUC3PP66hEo2PdWQ8nW2 GWqg8hNPBdQePVOn2979PYTwF/8=
Date: Wed, 01 Feb 2017 18:19:38 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892973a13c3_261c3f8766fc713c366896"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/21FU5MopHhTA0ziM5Fx-Joc1lbw>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3528.1486002048.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:20:47 -0000

----==_mimepart_5892973a13c3_261c3f8766fc713c366896
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

de47d40  rewrite after discussion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa..de47d40db2c9ca06eb98678e45ebab3f0253fda4

----==_mimepart_5892973a13c3_261c3f8766fc713c366896
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/de47d40" class="commit-link">de47d40</a>  rewrite after discussion</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa..de47d40db2c9ca06eb98678e45ebab3f0253fda4">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyKBTwalZEG06laPy2KJioKg-dPaIks5rYT06gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGtZIlVDvp7RQu4DMUQIpdCP3EIoks5rYT06gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa..de47d40db2c9ca06eb98678e45ebab3f0253fda4"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/eaa6a4bd547bcee8eabc9d72a535eea4f68c1aaa..de47d40db2c9ca06eb98678e45ebab3f0253fda4"}}}</script>

----==_mimepart_5892973a13c3_261c3f8766fc713c366896--


From nobody Wed Feb  1 18:24:03 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.538
X-Spam-Level: 
X-Spam-Status: No, score=-6.538 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 18:23:59 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486002239; bh=zsSvH+MX7a00LybEZ4FgB5NF8FuqWmJ0GKAxJYHEIu0=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zGBPiJnesWY8TyT/B9KXKYj1Y+YHJnepmZwWuUJFpf0VDnH2PYQgOvuj4Fu79MBm3 +OrT9sIvvXWeuRhHETDurPrWMRRX9LsyQS4WZ0FHMQ13i60rvqUM/DAorKpb6CIG/V Vo2CE1/tphIQO7obs5KWNPmVW8aTwFgS1ukChfKE=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892983fdaf2b_6b583fa70675d1309429d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Gg-yUeVqBy31if9JHBaVxNBvPQ8>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3529.1486002243.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:24:03 -0000

----==_mimepart_5892983fdaf2b_6b583fa70675d1309429d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

8171ff1  fix ref


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/de47d40db2c9ca06eb98678e45ebab3f0253fda4..8171ff1cd2d252a7a25980c510f1e9401b6a4339

----==_mimepart_5892983fdaf2b_6b583fa70675d1309429d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/8171ff1" class="commit-link">8171ff1</a>  fix ref</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/de47d40db2c9ca06eb98678e45ebab3f0253fda4..8171ff1cd2d252a7a25980c510f1e9401b6a4339">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPGxklzDcGkUEO7ZcXQ54HMiOrOSks5rYT4_gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyCAraiqKdrcJL5Dmosc6SAvDCMZqks5rYT4_gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/de47d40db2c9ca06eb98678e45ebab3f0253fda4..8171ff1cd2d252a7a25980c510f1e9401b6a4339"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/de47d40db2c9ca06eb98678e45ebab3f0253fda4..8171ff1cd2d252a7a25980c510f1e9401b6a4339"}}}</script>

----==_mimepart_5892983fdaf2b_6b583fa70675d1309429d--


From nobody Wed Feb  1 18:30:44 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.515
X-Spam-Level: 
X-Spam-Status: No, score=-4.515 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=rsJM2cdTPHrpoTimF/jRVaQNaFo=; b=BEffx1lUQh2hqqLo fUMdaG7uLSIZgHAdNmXzwWnvli4FCqzXuKy9+9ixCehf0jseQ7uh/zTxwyKk4IXx eUxWwWphqZAwt0znK+PkLqzOm+w8pP16HCTrayI6BfcnU3lr/f1S7W8m/b+WuD8M 0nBmzD/Mu6XolcvxcGOCQB/938k=
Date: Wed, 01 Feb 2017 18:30:40 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589299d01d06c_78373fb82e3391382571aa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/ze3FTAeg7B5guVtzSLvL4oZEu-k>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3530.1486002644.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:30:43 -0000

----==_mimepart_589299d01d06c_78373fb82e3391382571aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

A client won't be able to tell this, and that is what matters in terms of checking.  You really want to include the remote port at the client.  That leaves a server with the difficult problem of knowing how it is identified, but that's a problem they have already.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707392
----==_mimepart_589299d01d06c_78373fb82e3391382571aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>A client won't be able to tell this, and that is what matters in terms o=
f checking.  You really want to include the remote port at the client.  Tha=
t leaves a server with the difficult problem of knowing how it is identifie=
d, but that's a problem they have already.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-=
20707392">view it on GitHub</a>, or <a href=3D"https://github.com/notificat=
ions/unsubscribe-auth/AORpyKXsNcNdg9ZsLSBVXedRcjBjWH4wks5rYT_QgaJpZM4L0pn1"=
>mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https://github.com/n=
otifications/beacon/AORpyLSEySyCy3I0qx8jEDIMLnW2hOKCks5rYT_QgaJpZM4L0pn1.gi=
f" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707392"></l=
ink>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></met=
a>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson on de=
47d40: A client won't be able to tell this, and that is what matters in ter=
ms of checking.  You really want to include the remote port at the client. =
 That leaves a server with the difficult problem of knowing how it is ident=
ified, but that's a problem they have already."}],"action":{"name":"View Co=
mmit","url":"https://github.com/httpwg/http-extensions/commit/de47d40db2c9c=
a06eb98678e45ebab3f0253fda4#commitcomment-20707392"}}}</script>=

----==_mimepart_589299d01d06c_78373fb82e3391382571aa--


From nobody Wed Feb  1 18:31:50 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.037
X-Spam-Level: 
X-Spam-Status: No, score=-7.037 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=lmmSjv0rZffzexyIGqn6WCeS1c0=; b=dBVKnh0Yk1VcgHkm chMqIruXKTD+y5wUwcrNWBGXlKDjfztM7FFJFyk/bkWmzoJQnO0L3IhcTncYmCcs W6RrfqJwRlIPxCDWbknaBJpYCyHY/uEHYX9rWZFZudpyXZyxmxP2HrCbqw0jks2r PCwN+Z5lPexXOlTolGneN7FaP74=
Date: Wed, 01 Feb 2017 18:30:47 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589299d7b1f6a_38973ffbc2d8114011657e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/7fySlrAYkzzzglLNz6-Jif3iW10>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3531.1486002709.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:31:49 -0000

----==_mimepart_589299d7b1f6a_38973ffbc2d8114011657e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

835e8d9  Update 5987bis.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/8171ff1cd2d252a7a25980c510f1e9401b6a4339..835e8d99bc357101a8869a1415b4cdacb69f2a15

----==_mimepart_589299d7b1f6a_38973ffbc2d8114011657e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/835e8d9" class="commit-link">835e8d9</a>  Update 5987bis.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/8171ff1cd2d252a7a25980c510f1e9401b6a4339..835e8d99bc357101a8869a1415b4cdacb69f2a15">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHxfp9CWxAyDhixsw9XreLmym4CQks5rYT_XgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyOnof_TDBr1U0H2d3rhjm1RZXh2Aks5rYT_XgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/8171ff1cd2d252a7a25980c510f1e9401b6a4339..835e8d99bc357101a8869a1415b4cdacb69f2a15"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/8171ff1cd2d252a7a25980c510f1e9401b6a4339..835e8d99bc357101a8869a1415b4cdacb69f2a15"}}}</script>

----==_mimepart_589299d7b1f6a_38973ffbc2d8114011657e--


From nobody Wed Feb  1 18:33:05 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.11
X-Spam-Level: 
X-Spam-Status: No, score=-6.11 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 18:33:02 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486002782; bh=tfzxqKYZkSi6hJASgk+59oDt66YDXv6zGuWIxX8TwxI=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Eg3ZCEHtzXlESmDvL+qxux6xjXGyU3d125pr9H5xtL8iVEH52wXxaiJuen9B5B5Hn lvQS9vQI/C3l5PNUpUj87qGI643rXquQObQEpiblk2ZetcCvHlr8s0re93+zRBR0De L44gTTW5Y1vhnmEiB+Vf0T8TY3udezUNU27JiG7A=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929a5e5ea13_55ca3fca7ef0d13c389550"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/8pJlukGtvlrnV4zjHX91cIlZnJA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3534.1486002784.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:33:04 -0000

----==_mimepart_58929a5e5ea13_55ca3fca7ef0d13c389550
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thhpt. Yes.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707408
----==_mimepart_58929a5e5ea13_55ca3fca7ef0d13c389550
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thhpt. Yes.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707408">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyLfPpu5JhP7tgnP1EHb2GphhgZO4ks5rYUBegaJpZM4L0pn1">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyHCJsWAp_oRKxZ86Y4i6Th9z38_cks5rYUBegaJpZM4L0pn1.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707408"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot on de47d40: Thhpt. Yes."}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707408"}}}</script>
----==_mimepart_58929a5e5ea13_55ca3fca7ef0d13c389550--


From nobody Wed Feb  1 18:34:38 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.155
X-Spam-Level: 
X-Spam-Status: No, score=-8.155 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 18:34:34 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486002874; bh=O5yCcPc6rZTSfiLSKZUqcBzq2esc5QE9kyArEecIszA=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FGJEMleEEvEPQysWzcOD2sYLM60zc8HYg/tlKFj7TIS/Es41C2O2773LUSNJIAkwN sW5iTc9hkReoDoqjrl+XoftY7U/5M9fQDc4Wfgh4x1o4aM2U21KHuNtTHXMm/J1F6x JneUpG+zkB5DDS1kQG8QCUZckcUsznGeiBkCWbq8=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929abac8bbf_5da73fc51d35b13834444c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/T3DDtF46i35dCpH-G-hEAyBzCzw>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3535.1486002878.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:34:37 -0000

----==_mimepart_58929abac8bbf_5da73fc51d35b13834444c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In being specific, you have avoided a bunch of secondary checks that we might perform on a connection for a given name.  We avoided being specific in HTTP/2 by saying:

> The certificate presented by the server MUST satisfy any checks that the client would perform when forming a new TLS connection for the host in the URI.

That applies here.

The problem with this text is that it is necessary, but not sufficient.  The simplest example being that the SAN could be correct, but the domain name might be pinned to a different intermediate CA.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707417
----==_mimepart_58929abac8bbf_5da73fc51d35b13834444c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>In being specific, you have avoided a bunch of secondary checks that w=
e might perform on a connection for a given name.  We avoided being speci=
fic in HTTP/2 by saying:</p>
<blockquote>
<p>The certificate presented by the server MUST satisfy any checks that t=
he client would perform when forming a new TLS connection for the host in=
 the URI.</p>
</blockquote>
<p>That applies here.</p>
<p>The problem with this text is that it is necessary, but not sufficient=
.  The simplest example being that the SAN could be correct, but the doma=
in name might be pinned to a different intermediate CA.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commit=
comment-20707417">view it on GitHub</a>, or <a href=3D"https://github.com=
/notifications/unsubscribe-auth/AORpyBjUnIs2n7-789QytvJD4MpQkLdBks5rYUC6g=
aJpZM4L0pn1">mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https:=
//github.com/notifications/beacon/AORpyD5NqMSiPb5-IYKRaCxhh3pDI8qdks5rYUC=
6gaJpZM4L0pn1.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707417"=
></link>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></m=
eta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
artinthomson on de47d40: In being specific, you have avoided a bunch of s=
econdary checks that we might perform on a connection for a given name.  =
We avoided being specific in HTTP/2 by saying:\r\n\r\n\u003e The certific=
ate presented by the server MUST satisfy any checks that the client would=
 perform when forming a new TLS connection for the host in the URI.\r\n\r=
\nThat applies here.\r\n\r\nThe problem with this text is that it is nece=
ssary, but not sufficient.  The simplest example being that the SAN could=
 be correct, but the domain name might be pinned to a different intermedi=
ate CA."}],"action":{"name":"View Commit","url":"https://github.com/httpw=
g/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitc=
omment-20707417"}}}</script>=

----==_mimepart_58929abac8bbf_5da73fc51d35b13834444c--


From nobody Wed Feb  1 18:35:18 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.601
X-Spam-Level: 
X-Spam-Status: No, score=-3.601 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Xlg4MT3guEu7jBQz4egc2D3tTUs=; b=W6UC4ABcx2CBYMrU 1LVq1SDROLRN60EYN7MMNAFJhpTas6UdiByzHelk57PEXG2QzBmmaDKhLr6YebS9 gW6sOhQEATxADUnN+psmfYS0AsQ1jRM5oEes3bujCVFDLgizFDEBXHAyG5nG9+/U LurRpzGchuudnr/ZLyiY+EMAYSE=
Date: Wed, 01 Feb 2017 18:35:12 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929ae03a78e_45c3f9b5de6313c3039a4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/glrkP_BNKS0z6JqiTOKPhsXLBNM>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3536.1486002918.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:35:18 -0000

----==_mimepart_58929ae03a78e_45c3f9b5de6313c3039a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

d4bf661  local -> remote


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/835e8d99bc357101a8869a1415b4cdacb69f2a15..d4bf661368ff53a5a49c4d67e4c93348513c8a42

----==_mimepart_58929ae03a78e_45c3f9b5de6313c3039a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/d4bf661" class="commit-link">d4bf661</a>  local -&gt; remote</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/835e8d99bc357101a8869a1415b4cdacb69f2a15..d4bf661368ff53a5a49c4d67e4c93348513c8a42">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyItmmiUX6pwXwbrGc3QHIGtedTxyks5rYUDggaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyHbbYrAqxsOjR76KA2TFXMt6K6hIks5rYUDggaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/835e8d99bc357101a8869a1415b4cdacb69f2a15..d4bf661368ff53a5a49c4d67e4c93348513c8a42"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/835e8d99bc357101a8869a1415b4cdacb69f2a15..d4bf661368ff53a5a49c4d67e4c93348513c8a42"}}}</script>

----==_mimepart_58929ae03a78e_45c3f9b5de6313c3039a4--


From nobody Wed Feb  1 18:37:40 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.601
X-Spam-Level: 
X-Spam-Status: No, score=-3.601 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=quq/WET6xzSr5PDIGn48mF0HzRg=; b=XxKOKMqcPVcG99xm nxUqOofkW14P3BQT8SWbk3MWDWXa+6yM5P381oW3BfcO4CxIDfDzkEn/Hwg6mXSV 97VgcoBcJKUV3pcIIl8JjqPDm2FXyiaPY5M7JhjF799GEzZRtOrJRR4KmsAHBxXj l/db70nvYoH0cl3w5af+ts4zS6A=
Date: Wed, 01 Feb 2017 18:36:38 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929b36d3d1b_62583fc7dc0ed13c23060"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/XlP1eYfh1TrX4yz_wct0nZn2MBU>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3537.1486003059.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:37:39 -0000

----==_mimepart_58929b36d3d1b_62583fc7dc0ed13c23060
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is expressed as a delta from the rules in 7540 and elsewhere; they still apply. In particular, this check is being made upon receipt of the origin frame, NOT when the connection is established.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707434
----==_mimepart_58929b36d3d1b_62583fc7dc0ed13c23060
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>This is expressed as a delta from the rules in 7540 and elsewhere; they =
still apply. In particular, this check is being made upon receipt of the or=
igin frame, NOT when the connection is established.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-=
20707434">view it on GitHub</a>, or <a href=3D"https://github.com/notificat=
ions/unsubscribe-auth/AORpyEtQq2Fu8CZzpShurXIpjPHz-bdwks5rYUE2gaJpZM4L0pn1"=
>mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https://github.com/n=
otifications/beacon/AORpyJ0wVTWjnUWPYDpEUQlUjsh8FYotks5rYUE2gaJpZM4L0pn1.gi=
f" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707434"></l=
ink>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></met=
a>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot on de47d40: Th=
is is expressed as a delta from the rules in 7540 and elsewhere; they still=
 apply. In particular, this check is being made upon receipt of the origin =
frame, NOT when the connection is established."}],"action":{"name":"View Co=
mmit","url":"https://github.com/httpwg/http-extensions/commit/de47d40db2c9c=
a06eb98678e45ebab3f0253fda4#commitcomment-20707434"}}}</script>=

----==_mimepart_58929b36d3d1b_62583fc7dc0ed13c23060--


From nobody Wed Feb  1 18:38:56 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.601
X-Spam-Level: 
X-Spam-Status: No, score=-3.601 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=rlNIVd7fRF3oSR+shkHdnoAYE2o=; b=oCSJ0UupVlJqj6FY DzvRUVOTTGQnAFule8CbxHf61DHdmwi+/obs4vxPrmD1BVsoJDBqlmRhMWCWSSC6 q3wCN6XxEZGa9ELv18iuztUUcl6+5okRvkUn4xZtqep3/ZMPklAWtbSub5jlq51Z JXumTrUUFJ2YS2qvMSF8TJVnRgw=
Date: Wed, 01 Feb 2017 18:38:51 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929bbba264f_54c13fd18ef0913833281e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/SyfNw8oV1Rh3DAsfw4jnIuEtM_c>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3538.1486003135.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:38:55 -0000

----==_mimepart_58929bbba264f_54c13fd18ef0913833281e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

6529f68  add placeholder for IANA considerations.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/d4bf661368ff53a5a49c4d67e4c93348513c8a42..6529f681194b5d70612865b8dd1a36aeea7451eb

----==_mimepart_58929bbba264f_54c13fd18ef0913833281e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/6529f68" class="commit-link">6529f68</a>  add placeholder for IANA considerations.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/d4bf661368ff53a5a49c4d67e4c93348513c8a42..6529f681194b5d70612865b8dd1a36aeea7451eb">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyEz7boSvTj1Kw5wHG-HXn_LiuhDkks5rYUG7gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBv_2JnguaBU-WOQ-rDSMau_hBWPks5rYUG7gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/d4bf661368ff53a5a49c4d67e4c93348513c8a42..6529f681194b5d70612865b8dd1a36aeea7451eb"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/d4bf661368ff53a5a49c4d67e4c93348513c8a42..6529f681194b5d70612865b8dd1a36aeea7451eb"}}}</script>

----==_mimepart_58929bbba264f_54c13fd18ef0913833281e--


From nobody Wed Feb  1 18:39:17 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.538
X-Spam-Level: 
X-Spam-Status: No, score=-6.538 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 18:39:13 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486003153; bh=RJ/yMObMMmWvXP9tD7UCjYY0pDeDOPXlw8b6URFs7fY=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ToLhpLUNI2Xdoz+Lp6g/4Ok1nADwf6NCLrcSpQfW4ucSTh9BTOHqGE5PmOeI+1q+8 s/z2l8MBSUW0hYhSs5IUsfQbNtWzxeBvZk8nHbzuDT6U7g2dnIW1azT0bRzSkEM5Gt riP/jlggsMilTEDhPD0Fh9yKLlj2TDk2hONWtLrA=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58929bd1aef5e_23ab3ffbc2d81140314181"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Xk8-6LCupyO4lrnodAr--AaWlaY>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3539.1486003157.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 02:39:16 -0000

----==_mimepart_58929bd1aef5e_23ab3ffbc2d81140314181
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

6b932b2  I spel gud


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/6529f681194b5d70612865b8dd1a36aeea7451eb..6b932b2a5fca88705afabb23f938afe8d81129fe

----==_mimepart_58929bd1aef5e_23ab3ffbc2d81140314181
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/6b932b2" class="commit-link">6b932b2</a>  I spel gud</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/6529f681194b5d70612865b8dd1a36aeea7451eb..6b932b2a5fca88705afabb23f938afe8d81129fe">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyGt2WFEYE3-Cjfp7a_dol-G8055Xks5rYUHRgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLUmrMokSfUmFvne5cSBj8ksnVaiks5rYUHRgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/6529f681194b5d70612865b8dd1a36aeea7451eb..6b932b2a5fca88705afabb23f938afe8d81129fe"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/6529f681194b5d70612865b8dd1a36aeea7451eb..6b932b2a5fca88705afabb23f938afe8d81129fe"}}}</script>

----==_mimepart_58929bd1aef5e_23ab3ffbc2d81140314181--


From nobody Wed Feb  1 19:11:07 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.038
X-Spam-Level: 
X-Spam-Status: No, score=-6.038 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 19:11:00 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486005060; bh=YIPEyiBR2hoRgRGhv9fHClafWyMoERzk+AbHeW+lK/U=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=V0v8dgfici2HBa094feiyALm1IZ8en+kqXlVREA71RvI8hRfWPeXfChDcEs9Y1hJL oYiPArV+Yvf35ful404IPrJXjeHPKtwr7BVT7Zs7zZUhR30Q7cAltGH95ssAQQa1ZK ekyi9+M3sUJjK0xPIq9W8MZjpMKqcDF/3wcOfGUY=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892a3445883d_434b3fc7dc0ed13c258030"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/fTVGLIQcSTlJEjxqp3l409IUh5c>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3544.1486005066.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 03:11:05 -0000

----==_mimepart_5892a3445883d_434b3fc7dc0ed13c258030
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It implies more than that by restating a subset of those rules.  And the same rules need to apply upon receipt of ORIGIN as they do at connection establishment time.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707677
----==_mimepart_5892a3445883d_434b3fc7dc0ed13c258030
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>It implies more than that by restating a subset of those rules.  And t=
he same rules need to apply upon receipt of ORIGIN as they do at connecti=
on establishment time.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commit=
comment-20707677">view it on GitHub</a>, or <a href=3D"https://github.com=
/notifications/unsubscribe-auth/AORpyHjG0cz-V6gn4mmccKgJfcCPwguqks5rYUlEg=
aJpZM4L0pn1">mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https:=
//github.com/notifications/beacon/AORpyM1U7iH6mkj8tpbPNTSmAjrWMk7aks5rYUl=
EgaJpZM4L0pn1.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707677"=
></link>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></m=
eta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
artinthomson on de47d40: It implies more than that by restating a subset =
of those rules.  And the same rules need to apply upon receipt of ORIGIN =
as they do at connection establishment time."}],"action":{"name":"View Co=
mmit","url":"https://github.com/httpwg/http-extensions/commit/de47d40db2c=
9ca06eb98678e45ebab3f0253fda4#commitcomment-20707677"}}}</script>=

----==_mimepart_5892a3445883d_434b3fc7dc0ed13c258030--


From nobody Wed Feb  1 19:22:01 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.11
X-Spam-Level: 
X-Spam-Status: No, score=-6.11 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 19:21:58 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486005718; bh=+hcR4WIYS+GTs23CEo5kUWVTAb+ykyE8Srpc9fNTIHE=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VTAOjt7pmlg4lF7OoyB/PnCGZjtHPUYlRdjIPSZARC42bQxW2hnIfN4H0zdJBkbd9 oDAt0pYKR42mvKwN7KS0Q0bxrbcEO4metzOzBAF2gmICOvu019XL8+fj03Sssp5z/Z MJT76I+w8yFKowZUSmwr2eZ4AnOiYrEzUm0Fba5M=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
References: <httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4@github.com>
Subject: Re: [httpwg/http-extensions] rewrite after discussion (de47d40)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892a5d64f0a_73123f9b5de6313c3398d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/47R11nSMNsGalkFoDyYKb0_TfMs>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3549.1486005720.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 03:22:00 -0000

----==_mimepart_5892a5d64f0a_73123f9b5de6313c3398d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

All right, I'll add a "Note that...".


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707749
----==_mimepart_5892a5d64f0a_73123f9b5de6313c3398d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>All right, I'll add a "Note that...".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707749">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyOhf9YZ3R8seZ-ughZzgW8RmS5drks5rYUvWgaJpZM4L0pn1">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGEd3Q33IbyeVdGjYT_TInvaDes8ks5rYUvWgaJpZM4L0pn1.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707749"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot on de47d40: All right, I'll add a \"Note that...\".\r\n"}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/de47d40db2c9ca06eb98678e45ebab3f0253fda4#commitcomment-20707749"}}}</script>
----==_mimepart_5892a5d64f0a_73123f9b5de6313c3398d--


From nobody Wed Feb  1 19:55:28 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.038
X-Spam-Level: 
X-Spam-Status: No, score=-6.038 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 19:55:23 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486007723; bh=p8+HqWGzu0QUtJJzWOTeqRlzpZ/OLxModqX7E1/4Gl4=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lGOOurczOKFlbPmaSBcfPHT8wWFwnorBw3hS3wPUIG0egw2oHC4CboBKwh62OkS1Y LSTZ2P4CqUISY2w+J8AFfB5yD7KFuVMcT9Q2cSzcQ+hTm3h1NvaQyzpu2d3Ib38vCx 59MsmrcsVXcXYcdPusIbavhwu+on9/yKp4OsEBBg=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892adabaf231_4ca23f8766fc713c153822"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/3GR4XZDr0aXL1dJf3VX6i6cjtxk>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3552.1486007727.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 03:55:26 -0000

----==_mimepart_5892adabaf231_4ca23f8766fc713c153822
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

91b2a4e  add "note that..."


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/6b932b2a5fca88705afabb23f938afe8d81129fe..91b2a4e57d70967452c9e56617ff40ac27b1c1f8

----==_mimepart_5892adabaf231_4ca23f8766fc713c153822
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/91b2a4e" class="commit-link">91b2a4e</a>  add &quot;note that...&quot;</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/6b932b2a5fca88705afabb23f938afe8d81129fe..91b2a4e57d70967452c9e56617ff40ac27b1c1f8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIr0sOArCylFO9BYi2dtD1b6onIjks5rYVOrgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKq6VllD6qrN5BltzVsCfMP-K1Z2ks5rYVOrgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/6b932b2a5fca88705afabb23f938afe8d81129fe..91b2a4e57d70967452c9e56617ff40ac27b1c1f8"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/6b932b2a5fca88705afabb23f938afe8d81129fe..91b2a4e57d70967452c9e56617ff40ac27b1c1f8"}}}</script>

----==_mimepart_5892adabaf231_4ca23f8766fc713c153822--


From nobody Wed Feb  1 20:04:46 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.601
X-Spam-Level: 
X-Spam-Status: No, score=-3.601 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=JcqtKXUkpBXdpdh8TJouuRd85Lc=; b=eT1ld7/OP7yuNdD3 9GE8kMUU941BLXhMMDzeK71y81xRuOjb/LFRw9OQ4e2I/X9eUiFu5vw2vgyvKktj YDXApZD43tMoi2uizOw5a5UecA/ABdYcceDfot56SJj6fsgeoQiDHFbZK2g3b8Vr dKfH91/uIZWcgh9d3ON4bFy3mDQ=
Date: Wed, 01 Feb 2017 20:04:41 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f8@github.com>
References: <httpwg/http-extensions/commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f8@github.com>
Subject: Re: [httpwg/http-extensions] add "note that..." (91b2a4e)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892afd92734e_2f63fd18ef0913820709d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/5YId-ACQGsP7MN7sp7yfecofA_c>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3553.1486008285.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 04:04:45 -0000

----==_mimepart_5892afd92734e_2f63fd18ef0913820709d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that you intended to include this after the algorithm.  The text here only says that the client uses the server certificate to establish authority.  This bit is perfectly fine.  My objection was to the algorithm being so specific.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f8#commitcomment-20708043
----==_mimepart_5892afd92734e_2f63fd18ef0913820709d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I think that you intended to include this after the algorithm.  The text=
 here only says that the client uses the server certificate to establish au=
thority.  This bit is perfectly fine.  My objection was to the algorithm be=
ing so specific.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f8#commitcomment-=
20708043">view it on GitHub</a>, or <a href=3D"https://github.com/notificat=
ions/unsubscribe-auth/AORpyLJ0GADB8YGzuzBNlbqlNuUCxqiOks5rYVXZgaJpZM4L0snM"=
>mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https://github.com/n=
otifications/beacon/AORpyOUlkGRW3xNaEP3al1Te7vuoyYC2ks5rYVXZgaJpZM4L0snM.gi=
f" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f8#commitcomment-20708043"></l=
ink>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></met=
a>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson on 91=
b2a4e: I think that you intended to include this after the algorithm.  The =
text here only says that the client uses the server certificate to establis=
h authority.  This bit is perfectly fine.  My objection was to the algorith=
m being so specific."}],"action":{"name":"View Commit","url":"https://githu=
b.com/httpwg/http-extensions/commit/91b2a4e57d70967452c9e56617ff40ac27b1c1f=
8#commitcomment-20708043"}}}</script>=

----==_mimepart_5892afd92734e_2f63fd18ef0913820709d--


From nobody Wed Feb  1 22:21:54 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.601
X-Spam-Level: 
X-Spam-Status: No, score=-3.601 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=qFiHE16uQDY/y0YKJfixjnXDx8Q=; b=NEpAxiQAYirsl2AF Y5HFLuPYGaiMeHqeuNP6bvYUB3lTFpztUt8NvrDCMYaquEgKX7CekehiYId1BROn rsUwRPM6GGH2m2ikPTe3dhbaUMnY02wme5CFHq2eByusv2Us7/y9XVSUOHa/pMqy n6yqawnzpppx26K4hu6CC6vp3NE=
Date: Wed, 01 Feb 2017 22:21:49 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892cffdb44b3_11983fbf4b62913018555"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/t-HZmCCcrMeqXX225ikbHXG5j_0>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3568.1486016514.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 06:21:53 -0000

----==_mimepart_5892cffdb44b3_11983fbf4b62913018555
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

227694d  more HTTPS getout clause


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/91b2a4e57d70967452c9e56617ff40ac27b1c1f8..227694d092a8ce0fc88d044bdba8c0e4530eb2a9

----==_mimepart_5892cffdb44b3_11983fbf4b62913018555
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/227694d" class="commit-link">227694d</a>  more HTTPS getout clause</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/91b2a4e57d70967452c9e56617ff40ac27b1c1f8..227694d092a8ce0fc88d044bdba8c0e4530eb2a9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyCPls1IELUTwXeNrk9rr1WkeKq0Aks5rYXX9gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMSncR6drhEE2w9-3KxWRMBqLDALks5rYXX9gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/91b2a4e57d70967452c9e56617ff40ac27b1c1f8..227694d092a8ce0fc88d044bdba8c0e4530eb2a9"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/91b2a4e57d70967452c9e56617ff40ac27b1c1f8..227694d092a8ce0fc88d044bdba8c0e4530eb2a9"}}}</script>

----==_mimepart_5892cffdb44b3_11983fbf4b62913018555--


From nobody Wed Feb  1 22:37:41 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.52
X-Spam-Level: 
X-Spam-Status: No, score=-6.52 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 01 Feb 2017 22:37:34 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486017454; bh=wqMJOBzwHok+sn3RIIJveBmLebFOqUS3ho9POjzurRU=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Mzyp4Z1n7ECZpu5vLBa2wYWtRoubuFZfLvnEiEQppfIvl0B9dsvBIa50ragdJXtom RAFD3vKqwiPoLyba0PLAsDyY0RwgJ+ONQ4J9LCU+P/3y1ClgktoBA2D7D+3k/XaWPe 8xxffKtDkQFvY+RrZi059KrtD4Bb9IkrOTkvdq7U=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9@github.com>
References: <httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9@github.com>
Subject: Re: [httpwg/http-extensions] more HTTPS getout clause (227694d)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5892d3ae65325_1a283fca8cd31134906f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/t2TwfyCTEN4QPRTXAPd3Dg2JLIE>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3573.1486017459.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 06:37:38 -0000

----==_mimepart_5892d3ae65325_1a283fca8cd31134906f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm sure that you're enjoying this as much as I am.  I'm sorry for being a huge pedant^WPITA, but this isn't right.

This is a non-statement: SNI is mandatory in HTTP/2 and if the connection isn't up to snuff, it will never reach the point that an ORIGIN frame can be received.

I think that you need to change step 4.3 below.  Maybe:

> If the certificate presented by the server is not valid for the `host` of `parsed_origin`, skip to the next `origin_raw`. The certificate presented by the server is valid for `host` if it passes the checks that the client would perform when forming a new TLS connection to the origin.  This includes verifying that the `host` matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules defined in {{!RFC2818}}).

We had a pretty bad bug in Firefox because we performed one set of checks for Alt-Svc, but failed to perform some fairly critical checks.  I don't want to see a repeat of that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20709189
----==_mimepart_5892d3ae65325_1a283fca8cd31134906f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I'm sure that you're enjoying this as much as I am.  I'm sorry for bei=
ng a huge pedant^WPITA, but this isn't right.</p>
<p>This is a non-statement: SNI is mandatory in HTTP/2 and if the connect=
ion isn't up to snuff, it will never reach the point that an ORIGIN frame=
 can be received.</p>
<p>I think that you need to change step 4.3 below.  Maybe:</p>
<blockquote>
<p>If the certificate presented by the server is not valid for the <code>=
host</code> of <code>parsed_origin</code>, skip to the next <code>origin_=
raw</code>. The certificate presented by the server is valid for <code>ho=
st</code> if it passes the checks that the client would perform when form=
ing a new TLS connection to the origin.  This includes verifying that the=
 <code>host</code> matches a <code>dNSName</code> value from the certific=
ate <code>subjectAltName</code> field (using the wildcard rules defined i=
n {{!RFC2818}}).</p>
</blockquote>
<p>We had a pretty bad bug in Firefox because we performed one set of che=
cks for Alt-Svc, but failed to perform some fairly critical checks.  I do=
n't want to see a repeat of that.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commit=
comment-20709189">view it on GitHub</a>, or <a href=3D"https://github.com=
/notifications/unsubscribe-auth/AORpyCxqGKDMpNCVxy-tcLKNJAexsIVMks5rYXmug=
aJpZM4L0xOY">mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https:=
//github.com/notifications/beacon/AORpyCvkjytl9VaTohMNS8tDAiDloEOuks5rYXm=
ugaJpZM4L0xOY.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20709189"=
></link>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></m=
eta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
artinthomson on 227694d: I'm sure that you're enjoying this as much as I =
am.  I'm sorry for being a huge pedant^WPITA, but this isn't right.\r\n\r=
\nThis is a non-statement: SNI is mandatory in HTTP/2 and if the connecti=
on isn't up to snuff, it will never reach the point that an ORIGIN frame =
can be received.\r\n\r\nI think that you need to change step 4.3 below.  =
Maybe:\r\n\r\n\u003e If the certificate presented by the server is not va=
lid for the `host` of `parsed_origin`, skip to the next `origin_raw`. The=
 certificate presented by the server is valid for `host` if it passes the=
 checks that the client would perform when forming a new TLS connection t=
o the origin.  This includes verifying that the `host` matches a `dNSName=
` value from the certificate `subjectAltName` field (using the wildcard r=
ules defined in {{!RFC2818}}).\r\n\r\nWe had a pretty bad bug in Firefox =
because we performed one set of checks for Alt-Svc, but failed to perform=
 some fairly critical checks.  I don't want to see a repeat of that."}],"=
action":{"name":"View Commit","url":"https://github.com/httpwg/http-exten=
sions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20709=
189"}}}</script>=

----==_mimepart_5892d3ae65325_1a283fca8cd31134906f8--


From nobody Thu Feb  2 15:55:49 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.809
X-Spam-Level: 
X-Spam-Status: No, score=-4.809 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=cl2LtzWtApWQ9/0G1Dt1h0xESS0=; b=UUU1jnaMMlK0p2k4 OWW3WZPHbo2XXyP/4qoJdZmRavRWffDM/mb6BslS1jYmzSZHmKTHjtZgJWNuPf7w Hp23naFXoTPfgFFz2/zU2ZaasJI7aiW4AhM+lYmACcpliU2S1x7RCSH2jp66g8wA rdjnLTUv+9VcwLLOA6FjzWZ2Wi4=
Date: Thu, 02 Feb 2017 15:55:23 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9@github.com>
References: <httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9@github.com>
Subject: Re: [httpwg/http-extensions] more HTTPS getout clause (227694d)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893c6ebe1339_7bcd3fbd9e7811305853b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/s_uD0blxPk7O_ZS2nDB6eUTzWGI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3863.1486079749.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 23:55:48 -0000

----==_mimepart_5893c6ebe1339_7bcd3fbd9e7811305853b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It's a non-normative section, but OK.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20723464
----==_mimepart_5893c6ebe1339_7bcd3fbd9e7811305853b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>It's a non-normative section, but OK.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20723464">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyNXAmYKFfUv45uvNutxB1HQl21Raks5rYmzrgaJpZM4L0xOY">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyNr7hD1tW2N9n9eiw4ZRHYvPC_7Dks5rYmzrgaJpZM4L0xOY.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20723464"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot on 227694d: It's a non-normative section, but OK."}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/227694d092a8ce0fc88d044bdba8c0e4530eb2a9#commitcomment-20723464"}}}</script>
----==_mimepart_5893c6ebe1339_7bcd3fbd9e7811305853b--


From nobody Thu Feb  2 15:56:35 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.251
X-Spam-Level: 
X-Spam-Status: No, score=-7.251 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=xgcGW+DwBnXHN8TsQJECkl1gh6g=; b=L43gPwCrVjPTSFE5 a4aVLM9/L3Zh/DtxmFllRr9U9XgOn3Kfp1J1iEbDg0IJaZ/5pc7IAA+0d3Fr8Vi2 19hWmEitMMiTrmPnILbLB26cStn1rw6HsjnZwFx/eaWdcTj70xaoGeTJngGgGq97 UXqs1SaR3AVQwx8AQh+rqTl4q5Y=
Date: Thu, 02 Feb 2017 15:55:44 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893c70014b50_4c2c3fcec5c8113413252a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/vXEgNGlfw52E-yw7g4VdQleSN1A>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3864.1486079795.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Feb 2017 23:56:34 -0000

----==_mimepart_5893c70014b50_4c2c3fcec5c8113413252a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 3 commits.

66463b0  - Reserve some flags for backwards-incompatible changes
a77c322  add IANA considerations
4d3cf21  Martin's suggestion (modified)


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/227694d092a8ce0fc88d044bdba8c0e4530eb2a9..4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f

----==_mimepart_5893c70014b50_4c2c3fcec5c8113413252a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 3 commits.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/66463b0" class="commit-link">66463b0</a>  - Reserve some flags for backwards-incompatible changes</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/a77c322" class="commit-link">a77c322</a>  add IANA considerations</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/4d3cf21" class="commit-link">4d3cf21</a>  Martin&#39;s suggestion (modified)</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/227694d092a8ce0fc88d044bdba8c0e4530eb2a9..4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyFtfBX-jTlXs2HXSxVbu9XWzyO0aks5rYm0AgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDzxalPEtYogSid3g0uV7FCbT2XPks5rYm0AgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/227694d092a8ce0fc88d044bdba8c0e4530eb2a9..4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 3 commits in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/227694d092a8ce0fc88d044bdba8c0e4530eb2a9..4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f"}}}</script>

----==_mimepart_5893c70014b50_4c2c3fcec5c8113413252a--


From nobody Thu Feb  2 16:37:22 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.814
X-Spam-Level: 
X-Spam-Status: No, score=-3.814 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Ak8WiDmT6sm+PqoFjDM7g5c0VhA=; b=ukGljaN1aobRDA0f FmxKUcsGdYhlajbL/UB79RORBIh5m7geThzR3oP1R6Fd5FuYtRwj6M38D8WI4hGh esZxv7DyZBy/59Slh6D5SUpT6IpCs372jqZI6suKBQZziyseh4eEIutA0yUFZwnw cMykyHrbe7Avs6QpFYD07lmuEqY=
Date: Thu, 02 Feb 2017 16:37:17 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893d0bd7a067_3f13f84fd389138127875"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/CSWpedNX06zkoXjAVYnb-rYTtgA>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.3873.1486082241.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 00:37:21 -0000

----==_mimepart_5893d0bd7a067_3f13f84fd389138127875
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 5 commits.

b2a7bc2  change TLS step
f27c5e0  Tweak "initialised"
31fea62  add operational considerations
0b6affa  talk about conn de-duplication
8afa09b  clarify


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f..8afa09b580bf52df234522ce8397e67ff8274e76

----==_mimepart_5893d0bd7a067_3f13f84fd389138127875
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 5 commits.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/b2a7bc2" class="commit-link">b2a7bc2</a>  change TLS step</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/f27c5e0" class="commit-link">f27c5e0</a>  Tweak &quot;initialised&quot;</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/31fea62" class="commit-link">31fea62</a>  add operational considerations</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/0b6affa" class="commit-link">0b6affa</a>  talk about conn de-duplication</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/8afa09b" class="commit-link">8afa09b</a>  clarify</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f..8afa09b580bf52df234522ce8397e67ff8274e76">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyOTySffeFXhIZDZB3EwCjgafAjkBks5rYna9gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBC4DMzebDjK8qB32aeEnbienlyQks5rYna9gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f..8afa09b580bf52df234522ce8397e67ff8274e76"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 5 commits in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/4d3cf21550ed4dc84cd6d802e5ae24e7a01c412f..8afa09b580bf52df234522ce8397e67ff8274e76"}}}</script>

----==_mimepart_5893d0bd7a067_3f13f84fd389138127875--


From nobody Thu Feb  2 16:40:31 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.6
X-Spam-Level: 
X-Spam-Status: No, score=-3.6 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=B62yZARw3m+lNsh1KYEaQZZV8IQ=; b=KT4WC7Evv7voUqAI jXZDKbLx1EqmvJZgCSFuDbRFt0atW1EwzhneU3ClgQXmb3lbcNu+Bi1DQcEMrt+a MP8qjWlcYhTi27StE48u7499WsWpnZK5//v5e+bVveDAlyFWUhsMSdSliff2K0wG m4wktWlPBWBgJanLCeHGG8I/PkY=
Date: Thu, 02 Feb 2017 16:40:27 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e@github.com>
References: <httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e@github.com>
Subject: Re: [httpwg/http-extensions] - Reserve some flags for backwards-incompatible changes (66463b0)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893d17bc813a_ef43fd1f35691406729b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/c7daOAmYK_JOLgwjfgbA2cuue04>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3876.1486082430.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 00:40:30 -0000

----==_mimepart_5893d17bc813a_ef43fd1f35691406729b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I would state here that an ORIGIN flag with frames set is ignored unless the flag semantics are understood.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723822
----==_mimepart_5893d17bc813a_ef43fd1f35691406729b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I would state here that an ORIGIN flag with frames set is ignored unless the flag semantics are understood.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723822">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyOR4R1oRMKwyNHisf_cOXrof0qLfks5rYnd7gaJpZM4L104O">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDZ796_x9yvIZDYP7i58-OLHmz09ks5rYnd7gaJpZM4L104O.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723822"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson on 66463b0: I would state here that an ORIGIN flag with frames set is ignored unless the flag semantics are understood."}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723822"}}}</script>
----==_mimepart_5893d17bc813a_ef43fd1f35691406729b--


From nobody Thu Feb  2 16:44:10 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.401
X-Spam-Level: 
X-Spam-Status: No, score=-5.401 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 16:44:05 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486082645; bh=1XruufWalVmA/32HoMI6bPQixv4/XW8D9vBfx4gZnw4=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p04j3618n0io8qwz4dvM1AYqpiURGEQFRSblO4V1vLidKA+hKtFagZKlYHXSpyWMD OA6YVcBpiOfpBUIIRNtS5QTqj9ZS3962fRGe2tfYzBgDEnPQE9+wszvxwsDRtpwx4K sSeva3N9BfWrTB0aosNw37oNN0ri0tnqsUDl318I=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e@github.com>
References: <httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e@github.com>
Subject: Re: [httpwg/http-extensions] - Reserve some flags for backwards-incompatible changes (66463b0)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893d255476a9_14cd3fe4618b113817775b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Y24j89GGsaPbaBZypSBKOCr-sdQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3879.1486082649.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 00:44:08 -0000

----==_mimepart_5893d255476a9_14cd3fe4618b113817775b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

See later. I split the flags into backwards-compatible and backwards-incompatible, since it's not clear what kind of semantics we might need in the future.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723848
----==_mimepart_5893d255476a9_14cd3fe4618b113817775b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>See later. I split the flags into backwards-compatible and backwards-incompatible, since it's not clear what kind of semantics we might need in the future.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723848">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHf5oz6fv9HSKcBdmXkmdoPDI09Uks5rYnhVgaJpZM4L104O">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyOx8qjVOVGX-rrpRu-wxR-nxalYsks5rYnhVgaJpZM4L104O.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723848"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot on 66463b0: See later. I split the flags into backwards-compatible and backwards-incompatible, since it's not clear what kind of semantics we might need in the future."}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/66463b0fc1da7d00ba5ba44c6513db4cd2b0209e#commitcomment-20723848"}}}</script>
----==_mimepart_5893d255476a9_14cd3fe4618b113817775b--


From nobody Thu Feb  2 16:57:18 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.609
X-Spam-Level: 
X-Spam-Status: No, score=-6.609 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 16:56:48 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486083408; bh=ynoudXEJxImP+u2RkF63CqkEnCoJWMfQndJE9J7PIgw=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HKxGSONNmNHU5+EB6N+pF7uslvo1iW3TLgWSAnrJR+PyxCfTNUxYEN3gZcHOG2GI0 CGTSQgU8LMNtRgwTqPKRwnHQTumBiUr5ApsNr7O2rzdDsxkJbtMxse+cf6QebniODj v67b40zhHJ0UjqMCqFnFIO58mLldiJisxvMlU53M=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893d550d4dca_67d03fb691bab13429284"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/E2j8bamp2Ky8EaVUdVWQKO-ScB4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3880.1486083414.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 00:56:53 -0000

----==_mimepart_5893d550d4dca_67d03fb691bab13429284
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson approved this pull request.

This is looking good.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19929547
----==_mimepart_5893d550d4dca_67d03fb691bab13429284
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> approved this pull request.</p>

<p>This is looking good.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19929547">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyCPvsXfb5UhNHZlQKNOLTklk1RoSks5rYntQgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMSRkXaaw9vjpMxpHSMBbfT8OWdzks5rYntQgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19929547"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson approved #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-19929547"}}}</script>
----==_mimepart_5893d550d4dca_67d03fb691bab13429284--


From nobody Thu Feb  2 17:53:26 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.609
X-Spam-Level: 
X-Spam-Status: No, score=-6.609 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 17:53:22 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486086802; bh=p6DO59EDtV4bpIaa2utZKQIWD4dGT8O44xNW/PyX8Wc=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=vYAahXu99lsTVtVuvjbNa9RJulVO2DYXahIGTj1LJzvl/NxB8HcOpEvigh7zshbF6 tfFf/cq1sNcFpbXb/+B0a/eQdv0wsYzgqfQ9lN4ZNSVrq0tQUl9e7t90UTmaVix7Mt EBHobkPj/56AskLSn6V8EgEnuZvyeA/fWi5cKU3M=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Editorial suggestions (#286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e29245aa4_5bef3fe422d3713843594d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/CqJL8qipJwer5HDg7qieQHAvmc0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3895.1486086805.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 01:53:25 -0000

----==_mimepart_5893e29245aa4_5bef3fe422d3713843594d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/286
----==_mimepart_5893e29245aa4_5bef3fe422d3713843594d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/286">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyC_v2kCPpwnh6NDjOuUNqxy5Ls85ks5rYoiSgaJpZM4L1331">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMc1B7uZg83W_KVwL9a0MDyjH7buks5rYoiSgaJpZM4L1331.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/286"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Editorial suggestions (#286)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/286"}}}</script>
----==_mimepart_5893e29245aa4_5bef3fe422d3713843594d--


From nobody Thu Feb  2 17:55:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.6
X-Spam-Level: 
X-Spam-Status: No, score=-3.6 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=1xNdOR5yg9eDj96UUL6/dM37Dsg=; b=SE3Z1lBJty/eMgeO 0MSosvAYz0paSlMX7kRkPPvIkL1oP2tHHNYDOfgjR0CFjATAWhIfQYje6S9Iq5Xl 4tNjM9Us8xFngXbUkjCHVQbBB14MKuEgfoIhisxuy3X0PFIyKSccK9SY5PkjIxD8 GI9rji4uWegYa9x002RtE1p78dg=
Date: Thu, 02 Feb 2017 17:55:06 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/286@github.com>
References: <httpwg/http-extensions/issues/286@github.com>
Subject: Re: [httpwg/http-extensions] Editorial suggestions (#286)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e2fa86ed2_390b3fd627c8d13c109988"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/owyVB9jf1IJ-jIW_U9VKjp68Gps>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3897.1486086924.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 01:55:24 -0000

----==_mimepart_5893e2fa86ed2_390b3fd627c8d13c109988
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #286.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/286#event-947457714
----==_mimepart_5893e2fa86ed2_390b3fd627c8d13c109988
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a href="https://github.com/httpwg/http-extensions/issues/286" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/286" data-id="205051831" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#286</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/286#event-947457714">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyASTCK9AoBhe0gV66mY2Iotkd0jXks5rYoj6gaJpZM4L1331">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyJRVU_BjV7U5n6p-JKBIEOC3G34jks5rYoj6gaJpZM4L1331.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/286#event-947457714"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Closed #286."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/286#event-947457714"}}}</script>
----==_mimepart_5893e2fa86ed2_390b3fd627c8d13c109988--


From nobody Thu Feb  2 18:13:42 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.751
X-Spam-Level: 
X-Spam-Status: No, score=-6.751 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 18:13:39 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486088019; bh=KHK2/AqF3SLhpev0Ve8en2yTqdo1vtsWgZOwFz5Db7Y=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=u796ALgWgbwh1g1IHl7H+bZRh7q15a4FsQ0E8SV+xB64XJUrBS1vlRCupnFM6T4bu hJwwX7vMMeb+XfCY4QmyHhwRM4OmAN4E86kt3xezMO+1e1nSyTDubbnotVKOrAln3d qhWgRRO1RfgeNhOtPmN66Y5U9a/pTyKmFJ6NeqUc=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Immutable editorial (#287)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e7532d534_6623fb5551f713466878"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/xmAog-dT1Vf_2KGbPMDzOfXMYrg>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3898.1486088021.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 02:13:41 -0000

----==_mimepart_5893e7532d534_6623fb5551f713466878
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Editorial stuff, mostly line wrapping and adjusting terminology. Happy to chat through it if you like.
You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/287

-- Commit Summary --

  * Introduction
  * cc: extesion section
  * should -> SHOULD, light tweaking

-- File Changes --

    M draft-ietf-httpbis-immutable.md (153)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/287.patch
https://github.com/httpwg/http-extensions/pull/287.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/287

----==_mimepart_5893e7532d534_6623fb5551f713466878
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Editorial stuff, mostly line wrapping and adjusting terminology. Happy to chat through it if you like.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/287'>https://github.com/httpwg/http-extensions/pull/287</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Introduction</li>
  <li>cc: extesion section</li>
  <li>should -&gt; SHOULD, light tweaking</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/287/files#diff-0">draft-ietf-httpbis-immutable.md</a>
    (153)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/287.patch'>https://github.com/httpwg/http-extensions/pull/287.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/287.diff'>https://github.com/httpwg/http-extensions/pull/287.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPja6Q0NCm8AxF-PIUCDq1gzrWN0ks5rYo1TgaJpZM4L14k8">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLLPOpsSyGljeRr6_m2oiH0eFYCUks5rYo1TgaJpZM4L14k8.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/287"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Immutable editorial (#287)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/287"}}}</script>

----==_mimepart_5893e7532d534_6623fb5551f713466878--


From nobody Thu Feb  2 18:17:16 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.537
X-Spam-Level: 
X-Spam-Status: No, score=-6.537 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 18:17:11 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486088231; bh=herw8f3yMDCRKh1BzHn05JtV7fi2oT3mQrD2Y7qqCps=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Q3aST/pSGtHBYv5gUEopUyCqcqrmmKgc69jMD1YiE+UA9yUteWrOBuPvy0hW16RO2 YO4Yg5ifJX4K7E5ZZaj5CZ4MSEFOEtKEM3df+m4luFgPVlebZEvGbq/tZivV4/vfdQ iUXKCUy074R7jwyZ3S0H0qMN7lZLbLdARztIXKc0=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] The inverse of immutable (#288)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e827a391b_5703fbd7fbaf140607cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/e8p61LdGjsiQj18NmCii81EqTIM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3899.1486088235.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 02:17:14 -0000

----==_mimepart_5893e827a391b_5703fbd7fbaf140607cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Chrome currently implements the semantics of `immutable` using a browser heuristic rather than an explicit signal from the server.

if we define a complimentary CC extension with the inverse semantics of `immutable` -- i.e., roughly, "always refresh this when the user hits reload" -- it would allow Chrome to continue using a heuristic, but override it with an explicit signal from the server when the server cares about it.

If we do that, I think the CC extension name should be short (e.g., one or two characters).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/288
----==_mimepart_5893e827a391b_5703fbd7fbaf140607cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Chrome currently implements the semantics of <code>immutable</code> using a browser heuristic rather than an explicit signal from the server.</p>
<p>if we define a complimentary CC extension with the inverse semantics of <code>immutable</code> -- i.e., roughly, "always refresh this when the user hits reload" -- it would allow Chrome to continue using a heuristic, but override it with an explicit signal from the server when the server cares about it.</p>
<p>If we do that, I think the CC extension name should be short (e.g., one or two characters).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/288">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDdows2DapHDTRJ5IrH1MVbj6VX6ks5rYo4ngaJpZM4L14s5">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBbP8Yp3oSSqbt4U58ZkGuaxxHP0ks5rYo4ngaJpZM4L14s5.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/288"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"The inverse of immutable (#288)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/288"}}}</script>
----==_mimepart_5893e827a391b_5703fbd7fbaf140607cd--


From nobody Thu Feb  2 18:20:41 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.751
X-Spam-Level: 
X-Spam-Status: No, score=-6.751 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Thu, 02 Feb 2017 18:20:38 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486088438; bh=zdE2G5gWnA5/bH+2vv4WuRUVk8iMcTY91yIIN0etc64=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=wzGwmUVnVl/eiM8lx/v4GDH8FJCQXdT+BH7KGjpHFkDglZBcrhPYy39grhLDxUC0B SkH+wpMzY46P19bRtbH/3vup0ZjziBFK7AACBssFHATGCnpb04acu+Lrh3+DMvN6dC yuBx92rBZznpmr7bGeo/VJhFPWeYGLCemqn8mPGg=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] immutable definition (#289)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e8f6c1303_58f3fbd7fbaf140101446"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/vpfYuldBJtVoryjqY2wLHMutIio>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3900.1486088441.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 02:20:41 -0000

----==_mimepart_5893e8f6c1303_58f3fbd7fbaf140101446
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The definition of `immutable`s semantics are a bit weird:

> When present in an HTTP response, the `immutable` Cache-Control extension indicates that the origin server MUST NOT update the representation of that resource during the freshness lifetime of the response.

I think it should be defined in terms of client operation, rather than server operation. E.g.,

> When present in an HTTP response, the `immutable` Cache-Control extension indicates that clients SHOULD NOT issue a conditional request during the response's freshness lifetime (e.g., upon a "reload"), unless explicitly overridden by the user (e.g., a "force reload").


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/289
----==_mimepart_5893e8f6c1303_58f3fbd7fbaf140101446
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The definition of <code>immutable</code>s semantics are a bit weird:</p>
<blockquote>
<p>When present in an HTTP response, the <code>immutable</code> Cache-Control extension indicates that the origin server MUST NOT update the representation of that resource during the freshness lifetime of the response.</p>
</blockquote>
<p>I think it should be defined in terms of client operation, rather than server operation. E.g.,</p>
<blockquote>
<p>When present in an HTTP response, the <code>immutable</code> Cache-Control extension indicates that clients SHOULD NOT issue a conditional request during the response's freshness lifetime (e.g., upon a "reload"), unless explicitly overridden by the user (e.g., a "force reload").</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/289">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyJXj8bv45xVQmjy0-3I4VPRvVFuPks5rYo72gaJpZM4L140r">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyOw6T873MA5Y5D_iUtKiUZW9FHheks5rYo72gaJpZM4L140r.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/289"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"immutable definition (#289)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/289"}}}</script>
----==_mimepart_5893e8f6c1303_58f3fbd7fbaf140101446--


From nobody Thu Feb  2 18:22:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.3
X-Spam-Level: 
X-Spam-Status: No, score=-4.3 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=ZJgZjrIvRORVGBnoLDPFlLWTkOk=; b=sORExltEUZzZcar9 Bw3RG6j39/zMcf325TP0g2InhR8gMRkQxQJoybnJPjk1aeVxfg4P1rYdeeb2wS18 a8phbojawCv7q0WfWx5WJWecREMT3ytPc6ccmkbGggIWoapEApvidxsOX8j2YKtC s1/01E6Uwd1tHap3AUQ1dI7cSSQ=
Date: Thu, 02 Feb 2017 18:22:19 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] About Intermediaries (#290)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893e95b6e7a0_7af53fef036d7130159927"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/9qk7hNbaAN3byOJEvK4eKduZVFA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3901.1486088543.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 02:22:23 -0000

----==_mimepart_5893e95b6e7a0_7af53fef036d7130159927
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> An immutable response has the same semantic meaning for proxy clients as it does for User-Agent based clients and they therefore MAY also presume a conditional revalidation for a response marked immutable would return 304. A proxy client who uses immutable to anticipate a 304 response may choose whether to reply with a 304 or 200 to its requesting client.

Parse error :) What are you trying to do?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/290
----==_mimepart_5893e95b6e7a0_7af53fef036d7130159927
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>An immutable response has the same semantic meaning for proxy clients as it does for User-Agent based clients and they therefore MAY also presume a conditional revalidation for a response marked immutable would return 304. A proxy client who uses immutable to anticipate a 304 response may choose whether to reply with a 304 or 200 to its requesting client.</p>
</blockquote>
<p>Parse error :) What are you trying to do?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/290">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHaInGZ3tpnw3b_ePo5Z-Nz9v5kyks5rYo9bgaJpZM4L144O">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyPfbmUJcjK93dkQLI_ndnD8dt-Ttks5rYo9bgaJpZM4L144O.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/290"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"About Intermediaries (#290)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/290"}}}</script>
----==_mimepart_5893e95b6e7a0_7af53fef036d7130159927--


From nobody Thu Feb  2 19:08:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.808
X-Spam-Level: 
X-Spam-Status: No, score=-4.808 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=2eOUp5JVFmfXNmcH/AkpTB8W3GM=; b=DmRASsp9fJbkR9lL 1NwLvGdT8lvLG2QqCF0GP5xkZuCxjD6b1wFq4ymihawcG4wlORbs/QUscoQ59hYe loj2w+LAqDGZc8aS9hWgAcUE+r/QUWw3nmvQb5E7qfNC+CawSo2xNFwMWXHY6ijN ojfiS0eFOq5yczamtPaIjGs3x7A=
Date: Thu, 02 Feb 2017 19:08:19 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Persistence (#291)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5893f4238e935_6be23ff74237113429516c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/sfBONOCekUdL-38o9E9zVoQTk98>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3906.1486091304.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 03:08:23 -0000

----==_mimepart_5893f4238e935_6be23ff74237113429516c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Dare we specify that clients MAY/SHOULD persist origin information for a given endpoint beyond the lifetime of the connection?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/291
----==_mimepart_5893f4238e935_6be23ff74237113429516c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Dare we specify that clients MAY/SHOULD persist origin information for a given endpoint beyond the lifetime of the connection?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/291">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyM6h1mrX6-x_I7J7D3L-KDvNad_Dks5rYpojgaJpZM4L16bn">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGqHdRkdoIoHHSCv6IF4aJSS6tEOks5rYpojgaJpZM4L16bn.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/291"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Persistence (#291)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/291"}}}</script>
----==_mimepart_5893f4238e935_6be23ff74237113429516c--


From nobody Fri Feb  3 08:10:05 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.654
X-Spam-Level: 
X-Spam-Status: No, score=-8.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=xn7Vwxrn2rtUobcYw85Ug+Qm/7U=; b=Lg0F9TJulAUoSFhr F5iXcIyg4aHIgiuK+gDys7ZrrSKnZyBfU8mflN7QHd8CtziP/cug7VLWJSoS9YrD YI7X4k2SgiAk+fiGhjx9quH7gO1BVPT7zssKPOnDQjD5mcx9aI2QmrKH3psLRt0A 1ah62yWqQDdEYlMyF7Usb5o0Fgo=
Date: Fri, 03 Feb 2017 08:09:58 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5894ab56a5090_76b13fe1e92111401774d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/VUFUFANgYccGyA8zjpOb3DPuF0s>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4002.1486138204.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 16:10:03 -0000

----==_mimepart_5894ab56a5090_76b13fe1e92111401774d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mcmanus commented on this pull request.

this is indeed looking good

> @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 "ORIGIN", to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2's requirement to establish server authority using
+both DNS and the server's certificate is onerous. This specification relaxes the requirement to
+check DNS when the ORIGIN frame is in use.
+
+

nit extra newline

>  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for

this is a whole new, albeit interesting!, way of versioning. is this the place to break that ground?

>  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for
+backwards-incompatible changes, and therefore when any of them are set, the ORIGIN frame containing
+them MUST be ignored by clients conforming to this specification. The remaining flags are reserved
+for backwards-compatible changes, and do not affect processing by clients conformant to this
+specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients

clarifying suggestion: The ORIGIN frame describes a property of the connection, and therefore  is processed hop-by-hop.

> +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame's payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of "https", 
+* a host that is reflected in a `subjectAltName` of the connection's TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection's remote port on the client. 

hmm. how does this interact with Alt-Svc? Seems that you could be connected to a port number different than the origin port number (thanks to Alt-Svc) and still want to use origin frames.

>  
-The ORIGIN frame allows the server to modify the Origin Set. In particular:
+  - Scheme: "https"
+  - Host: the value sent in Server Name Indication ({{!RFC6066}} Section 3), converted to lower case
+  - Port: the local port of the connection on the server

alt-svc concern applies here too wrt port

> @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 "ORIGIN", to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2's requirement to establish server authority using

in discussions on this there are a couple of other motivators that may (or may not!) be worth including as introductory text.. one is simply that it can save a dns lookup by effectively inlining the result and the other is that dns is often a privacy leak that can be avoided by not making the lookup

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455
----==_mimepart_5894ab56a5090_76b13fe1e92111401774d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mcmanus</b> commented on this pull request.</p>

<p>this is indeed looking good</p><hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 &quot;ORIGIN&quot;, to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2&#39;s requirement to establish server authority using
+both DNS and the server&#39;s certificate is onerous. This specification relaxes the requirement to
+check DNS when the ORIGIN frame is in use.
+
+
</pre>
<p>nit extra newline</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for
</pre>
<p>this is a whole new, albeit interesting!, way of versioning. is this the place to break that ground?</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for
+backwards-incompatible changes, and therefore when any of them are set, the ORIGIN frame containing
+them MUST be ignored by clients conforming to this specification. The remaining flags are reserved
+for backwards-compatible changes, and do not affect processing by clients conformant to this
+specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
</pre>
<p>clarifying suggestion: The ORIGIN frame describes a property of the connection, and therefore  is processed hop-by-hop.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame&#39;s payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of &quot;https&quot;, 
+* a host that is reflected in a `subjectAltName` of the connection&#39;s TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection&#39;s remote port on the client. 
</pre>
<p>hmm. how does this interact with Alt-Svc? Seems that you could be connected to a port number different than the origin port number (thanks to Alt-Svc) and still want to use origin frames.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  
-The ORIGIN frame allows the server to modify the Origin Set. In particular:
+  - Scheme: &quot;https&quot;
+  - Host: the value sent in Server Name Indication ({{!RFC6066}} Section 3), converted to lower case
+  - Port: the local port of the connection on the server
</pre>
<p>alt-svc concern applies here too wrt port</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 &quot;ORIGIN&quot;, to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2&#39;s requirement to establish server authority using
</pre>
<p>in discussions on this there are a couple of other motivators that may (or may not!) be worth including as introductory text.. one is simply that it can save a dns lookup by effectively inlining the result and the other is that dns is often a privacy leak that can be avoided by not making the lookup</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyEYT7n4vs2-dLU5_S86w7TqB_cDjks5rY1FWgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKkF1X13GIWevl4_D-EDvfjl8D2eks5rY1FWgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mcmanus commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20027455"}}}</script>
----==_mimepart_5894ab56a5090_76b13fe1e92111401774d7--


From nobody Fri Feb  3 11:34:15 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.654
X-Spam-Level: 
X-Spam-Status: No, score=-8.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=3hmhhMa2VThWSz1IkwshxVO58QA=; b=jXjl6ttPRNfYOvhN nOg0M5SoGX0vnqoqN+Ioa2a4CgTN/PCt/KnNEsEacq7eST4ZZhRtnaKKR83vpa7w sQJFExKDT3aObgIcx1F5/AMyo6gLjDpdoHLV0FdjWN+slFTykQxBfWRFvtuJIubn WiwkcBhkprmhSet3vxrRzHUfxFw=
Date: Fri, 03 Feb 2017 11:33:32 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5894db0c173c3_47483fd389b9313c2006b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/BaB1AysPNHN2Z228HMoBySsXVMg>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4058.1486150455.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Feb 2017 19:34:14 -0000

----==_mimepart_5894db0c173c3_47483fd389b9313c2006b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

deweerdt commented on this pull request.

minor nits

>  +-------------------------------+-------------------------------+
 ~~~~
 
 The ORIGIN frame's payload contains the following fields, sets of which may be repeated within the
 frame to indicate multiple origins:
 
 Origin-Len:
-: An unsigned, 16-bit integer indicating the length, in octets, of the Origin field.
+: An unsigned, 16-bit integer indicating the length, in octets, of the ASCII-Origin field.

Should this mention network ordering?

> +
+1. If the client is configured to use a proxy for the connection, ignore the frame and stop processing.
+2. If the connection is not identified with the "h2" protocol identifier or another protocol that has explicitly opted into this specification, ignore the frame and stop processing.
+3. If the frame occurs upon any stream except stream 0, ignore the frame and stop processing.
+4. If any of the flags 0x1, 0x2, 0x4 or 0x8 are set, ignore the frame and stop processing.
+5. If no previous ORIGIN frame on the connection has reached this step, initialise the Origin Set as per {{set}}.
+6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not "https", skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection's remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules

typo: s/sNSName/DNSName/

> +6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not "https", skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection's remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules
+defined in {{!RFC2818}}).
+
+
+# Operational Considerations for Servers {#server-ops}
+
+The ORIGIN frame allows a server to indicate what for origins a given connection ought be used.

s/to indicate what for origins/to indicate for which origins/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980
----==_mimepart_5894db0c173c3_47483fd389b9313c2006b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@deweerdt</b> commented on this pull request.</p>

<p>minor nits</p><hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  +-------------------------------+-------------------------------+
 ~~~~
 
 The ORIGIN frame&#39;s payload contains the following fields, sets of which may be repeated within the
 frame to indicate multiple origins:
 
 Origin-Len:
-: An unsigned, 16-bit integer indicating the length, in octets, of the Origin field.
+: An unsigned, 16-bit integer indicating the length, in octets, of the ASCII-Origin field.
</pre>
<p>Should this mention network ordering?</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +
+1. If the client is configured to use a proxy for the connection, ignore the frame and stop processing.
+2. If the connection is not identified with the &quot;h2&quot; protocol identifier or another protocol that has explicitly opted into this specification, ignore the frame and stop processing.
+3. If the frame occurs upon any stream except stream 0, ignore the frame and stop processing.
+4. If any of the flags 0x1, 0x2, 0x4 or 0x8 are set, ignore the frame and stop processing.
+5. If no previous ORIGIN frame on the connection has reached this step, initialise the Origin Set as per {{set}}.
+6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not &quot;https&quot;, skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection&#39;s remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules
</pre>
<p>typo: s/sNSName/DNSName/</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not &quot;https&quot;, skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection&#39;s remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules
+defined in {{!RFC2818}}).
+
+
+# Operational Considerations for Servers {#server-ops}
+
+The ORIGIN frame allows a server to indicate what for origins a given connection ought be used.
</pre>
<p>s/to indicate what for origins/to indicate for which origins/</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyLWVlbHGuntzetfJaCpZoGLKSNaSks5rY4EMgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKyq-rNfDNSs7wcHsAd_cDO6H9S9ks5rY4EMgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@deweerdt commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285#pullrequestreview-20085980"}}}</script>
----==_mimepart_5894db0c173c3_47483fd389b9313c2006b7--


From nobody Fri Feb  3 16:25:51 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.814
X-Spam-Level: 
X-Spam-Status: No, score=-3.814 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=LLaruUTfnkD/Not9T0UgcqSnoc8=; b=eiv1OoCOOWYfmGt+ ZrcO4FZoTkK5rkccU/KkgA9lvhYbMT8t80SzWgVz2nHnEcwI4ckXpPFm1e1e7kyu f5sWCOb4/SyQa9CpZ8nvHb+wiUjyatmE0YXKj/5CUNRkiaUoHJ+XEawy6uRK3Y3z lO86I5ctXpki7L0OFIL/vX2lCow=
Date: Fri, 03 Feb 2017 16:25:45 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58951f897ce55_72cb3fc6af73313c1054f2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/6OBNkqN6d1tDOYwWDGxNGRoB4Nw>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4113.1486167950.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:25:49 -0000

----==_mimepart_58951f897ce55_72cb3fc6af73313c1054f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



>  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for

Well, it has to be somewhere. I did it here because there seem to be some cases that require a breaking change (e.g., if we want to include a DELETE or CLEAR flag down the road), and some that don't (e.g., wildcard support).

Happy to take it out (there are always more ways to do it), but it seemed mostly harmless to try it out here.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_58951f897ce55_72cb3fc6af73313c1054f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  
-REMOVE (0x2): 
-: Indicates that the origin(s) carried in the payload must be removed from the Origin Set, if present; if not present, it/they have no effect.
+This specification does not define any flags for the ORIGIN frame, but future updates might use
+them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for
</pre>
<p>Well, it has to be somewhere. I did it here because there seem to be some cases that require a breaking change (e.g., if we want to include a DELETE or CLEAR flag down the road), and some that don't (e.g., wildcard support).</p>
<p>Happy to take it out (there are always more ways to do it), but it seemed mostly harmless to try it out here.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMAFzadPCUak6DXl1eN4AFe3ZnDAks5rY8WJgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKPbmZZr7sXcilNAiWm4qiSP5R0bks5rY8WJgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_58951f897ce55_72cb3fc6af73313c1054f2--


From nobody Fri Feb  3 16:30:36 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.537
X-Spam-Level: 
X-Spam-Status: No, score=-6.537 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Fri, 03 Feb 2017 16:30:32 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486168232; bh=1uwI8TllqzGxb1VBzycsMNvyJ+NdBOf5LpGChP+gXBI=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SBcOOQzOzQKMhgScJKgGytUXw9yIM61wrRw6Y5Dkjl9LXL/Dy0FFxw3Mi58YcgA8L KL6VcgGsrfiBuHK1/IE2X7n+emT87e+vH2+7BdTV6DLLgjIUm26kHFbqN6OKdZh/pk vBc92f+xSnQ2q+tzj62C5R5d3bFLll1oAfzNcmAY=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589520a851090_3f33fb8035911405084b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/gcfPg0-Gv-WIHUdXkfqMjoBu0BE>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4118.1486168235.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:30:35 -0000

----==_mimepart_589520a851090_3f33fb8035911405084b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 "ORIGIN", to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2's requirement to establish server authority using

already fixed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_589520a851090_3f33fb8035911405084b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 &quot;ORIGIN&quot;, to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2&#39;s requirement to establish server authority using
</pre>
<p>already fixed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyICc2QaBC0Qk_1Z6mh_-kVXW17zaks5rY8aogaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMzYVOhXY7uQHdjH3KzmxeLqIcBKks5rY8aogaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_589520a851090_3f33fb8035911405084b--


From nobody Fri Feb  3 16:30:52 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.814
X-Spam-Level: 
X-Spam-Status: No, score=-3.814 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Wtq46rFCQb7VyW+1F+iY2U77Mb8=; b=NoaMW/qyKxLpfS/H xaoheTi8bRAPyOW64oWtXaSbmFnC9iyN2Im0/QVEOAtiKKFApjRU2hRKHPD5GM95 KdEztKJ75H+XDbP1Bp5cFFMq0Ns/5ESyu5n/PkpY8WUsDvOjQhuwgGckNKuMP1Sd hXgYiofOkHHKSs41uLGdv5e13hg=
Date: Fri, 03 Feb 2017 16:30:38 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589520ae3b79e_27fa3fc3ae18313c1107e8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Wt3srpJyaxlN3IbHOHCgByJCRpU>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4119.1486168251.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:30:50 -0000

----==_mimepart_589520ae3b79e_27fa3fc3ae18313c1107e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 "ORIGIN", to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2's requirement to establish server authority using
+both DNS and the server's certificate is onerous. This specification relaxes the requirement to
+check DNS when the ORIGIN frame is in use.
+
+

already fixed

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_589520ae3b79e_27fa3fc3ae18313c1107e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 &quot;ORIGIN&quot;, to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2&#39;s requirement to establish server authority using
+both DNS and the server&#39;s certificate is onerous. This specification relaxes the requirement to
+check DNS when the ORIGIN frame is in use.
+
+
</pre>
<p>already fixed</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDieVNQMQCJdPkQjCf2Ij8TRJ2p-ks5rY8augaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyEw-58_D6sKzUIPFZBGoupczyyH6ks5rY8augaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_589520ae3b79e_27fa3fc3ae18313c1107e8--


From nobody Fri Feb  3 16:33:14 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.155
X-Spam-Level: 
X-Spam-Status: No, score=-8.155 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Fri, 03 Feb 2017 16:33:11 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486168391; bh=GDt0hOy7qNcENmeVp6/AvDkvKIqKUzoAo4EmolSOxP0=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pSrf/Q2RkFYujPAhqnoZ8R9sqsr8ZytVKITz+EzG24bllz6TSSSF23Q9e8scnCCG/ h5hyETyuh37zqWBFEPhjGzKuCIJu/5xXCHCaNYNYyS7mVh6USxffxX6oONPiwUFfXS u9QgLeTMZHa0uAH+6kcABHAAM7Ru8k0bXqQgJT4U=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5895214716477_2b0d3fce06c5d140662c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/uBU-OUZtGmo6YFH3IK4lc9k06Ic>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4120.1486168394.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:33:14 -0000

----==_mimepart_5895214716477_2b0d3fce06c5d140662c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> +
+1. If the client is configured to use a proxy for the connection, ignore the frame and stop processing.
+2. If the connection is not identified with the "h2" protocol identifier or another protocol that has explicitly opted into this specification, ignore the frame and stop processing.
+3. If the frame occurs upon any stream except stream 0, ignore the frame and stop processing.
+4. If any of the flags 0x1, 0x2, 0x4 or 0x8 are set, ignore the frame and stop processing.
+5. If no previous ORIGIN frame on the connection has reached this step, initialise the Origin Set as per {{set}}.
+6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not "https", skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection's remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules

Is correct; see https://tools.ietf.org/html/rfc5280#section-4.2.1.6 (but will add a ref)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_5895214716477_2b0d3fce06c5d140662c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +
+1. If the client is configured to use a proxy for the connection, ignore the frame and stop processing.
+2. If the connection is not identified with the &quot;h2&quot; protocol identifier or another protocol that has explicitly opted into this specification, ignore the frame and stop processing.
+3. If the frame occurs upon any stream except stream 0, ignore the frame and stop processing.
+4. If any of the flags 0x1, 0x2, 0x4 or 0x8 are set, ignore the frame and stop processing.
+5. If no previous ORIGIN frame on the connection has reached this step, initialise the Origin Set as per {{set}}.
+6. For each Origin field `origin_raw` in the frame payload:
+   1. Parse `origin_raw` as an ASCII serialization of an origin ({{!RFC6454}}, Section 6.2) and let the result be `parsed_origin`. If parsing fails, skip to the next `origin_raw`.
+   2. If the `scheme` of `parsed_origin` is not &quot;https&quot;, skip to the next `origin_raw`.
+   3. If the certificate presented by the server is not valid for the `host` of `parsed_origin` (see below), skip to the next `origin_raw`.
+   4. If the `port` of `parsed_origin` does not match the connection&#39;s remote port, skip to the next `origin_raw`.
+   5. Add `parsed_origin` to the Origin Set.
+
+The certificate presented by the server is valid for a host if it passes the checks that the client
+would perform when forming a new TLS connection to the origin. This includes verifying that the
+host matches a `dNSName` value from the certificate `subjectAltName` field (using the wildcard rules
</pre>
<p>Is correct; see <a href="https://tools.ietf.org/html/rfc5280#section-4.2.1.6">https://tools.ietf.org/html/rfc5280#section-4.2.1.6</a> (but will add a ref)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyGCKsYadhYGbzV4SpaS4gperGMChks5rY8dHgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDm0o4KOe1R4oLXeSI0XVD_Z2Wx8ks5rY8dHgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_5895214716477_2b0d3fce06c5d140662c--


From nobody Fri Feb  3 16:35:17 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.537
X-Spam-Level: 
X-Spam-Status: No, score=-6.537 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=unavailable autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Fri, 03 Feb 2017 16:27:14 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486168034; bh=OshnmPENl3gJY9k28D57gfq8PbZJGSlvSWCV37J1sss=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tGJRuB+jqd9o49QjPyfMuHvU62JIT8Xh9Z6ZEsUL4MgxEAuZC7mxUZP4zPlDz/l9F 4E085swX+B2mmJI7klKSOTYK4xOzJqn+pmH6/O0Ljntg5NmnY5oyQ6DaXrriw+f93Q 39DCnfBaqc9AM64xgMJbwzg8JtR0mDUk7CrXMzrY=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58951fe25242c_35423fca7d5ef13c203d4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/gnQ2ur21Eo9epO9xbDayTh0Uzqk>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4121.1486168516.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:35:16 -0000

----==_mimepart_58951fe25242c_35423fca7d5ef13c203d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



>  +-------------------------------+-------------------------------+
 ~~~~
 
 The ORIGIN frame's payload contains the following fields, sets of which may be repeated within the
 frame to indicate multiple origins:
 
 Origin-Len:
-: An unsigned, 16-bit integer indicating the length, in octets, of the Origin field.
+: An unsigned, 16-bit integer indicating the length, in octets, of the ASCII-Origin field.

Convention is not to in new frame types, since H2 defines it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_58951fe25242c_35423fca7d5ef13c203d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  +-------------------------------+-------------------------------+
 ~~~~
 
 The ORIGIN frame&#39;s payload contains the following fields, sets of which may be repeated within the
 frame to indicate multiple origins:
 
 Origin-Len:
-: An unsigned, 16-bit integer indicating the length, in octets, of the Origin field.
+: An unsigned, 16-bit integer indicating the length, in octets, of the ASCII-Origin field.
</pre>
<p>Convention is not to in new frame types, since H2 defines it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMMj1nfx59abWP74fBsIfWahlOeJks5rY8XigaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyF5WzDV0XjorRB0s15kJ2XK8RDJjks5rY8XigaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_58951fe25242c_35423fca7d5ef13c203d4--


From nobody Fri Feb  3 16:36:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.036
X-Spam-Level: 
X-Spam-Status: No, score=-7.036 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.156, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=x0P01SucgD2qZxh1wqK/IAOrmuQ=; b=pz6NXQ1EvMjB/ZhC EgghW1G6kC0g3EhV8lorq/+EP6AU3fc3Se9vZl2+wMRMR2DjavfMsHCCKtIgcC2Y d/+HwBhdbrssN1iF19NBVDpV+YtK21wvKVenSoDAtfBmpmGFh0jyE7i8IhaS5YgG +ILRorReDctdFG1QmC6t2OuYgiQ=
Date: Fri, 03 Feb 2017 16:36:18 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58952202cc274_29da3fc3ae18313c197881"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/331LtoUVipQqe-hRTId3jpo1v0U>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4124.1486168584.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:36:23 -0000

----==_mimepart_58952202cc274_29da3fc3ae18313c197881
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 "ORIGIN", to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2's requirement to establish server authority using

Done

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_58952202cc274_29da3fc3ae18313c197881
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; @@ -58,6 +58,11 @@ Using a status code in this manner allows clients to recover from misdirected re
 penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
 &quot;ORIGIN&quot;, to allow servers to indicate what origins a connection is usable for.
 
+Additionally, experience has shown that HTTP/2&#39;s requirement to establish server authority using
</pre>
<p>Done</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyJeqee-mdRfPQn0N3PgxaiGA3eRuks5rY8gCgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBXbTpPbHu0dfyIl0g7hDnYXSmLoks5rY8gCgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_58952202cc274_29da3fc3ae18313c197881--


From nobody Fri Feb  3 16:46:07 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.751
X-Spam-Level: 
X-Spam-Status: No, score=-6.751 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.156, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Fri, 03 Feb 2017 16:46:04 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486169164; bh=LJidub/4y/DztruLvqxCTh+4mMvNw3w52+r5/ijDhnw=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RsVIpLroHVG0gnmk6AoEydQ3PfVZq9C1Kwpz1dpGMwDzTsm7XRvisRJKLgl6VgDsy 4Z6nXd1nFxH0Af+zZ1PRWxIUfiosj1RlGVilsHQiNHk4IhUxL63X7fj5+cEBn2KLQ/ 3pQG6fHvSgsP2eGkTawhvlS7taUKsxUBFryXONUk=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5895244c3bcf_3cc3fb80359114096096"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/BjuOfFkHDRg1P_VsoKaclMPJFh0>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.4127.1486169167.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:46:06 -0000

----==_mimepart_5895244c3bcf_3cc3fb80359114096096
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 4 commits.

cc16f7d  Patrick's suggestion about hop-by-hop
5a9a667  deweert suggestion
93d2b92  add 5280 ref
213b958  Add motivation


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/8afa09b580bf52df234522ce8397e67ff8274e76..213b958c421f2077ea86295d3b3ae753bfb04317

----==_mimepart_5895244c3bcf_3cc3fb80359114096096
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 4 commits.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/cc16f7d" class="commit-link">cc16f7d</a>  Patrick&#39;s suggestion about hop-by-hop</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/5a9a667" class="commit-link">5a9a667</a>  deweert suggestion</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/93d2b92" class="commit-link">93d2b92</a>  add 5280 ref</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/213b958" class="commit-link">213b958</a>  Add motivation</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/8afa09b580bf52df234522ce8397e67ff8274e76..213b958c421f2077ea86295d3b3ae753bfb04317">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyNYBkvVEJc9BEraoafGTb3NtKxwWks5rY8pMgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyB4er30Tq_KXQl87YSR64S6J51EFks5rY8pMgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/8afa09b580bf52df234522ce8397e67ff8274e76..213b958c421f2077ea86295d3b3ae753bfb04317"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 4 commits in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/8afa09b580bf52df234522ce8397e67ff8274e76..213b958c421f2077ea86295d3b3ae753bfb04317"}}}</script>

----==_mimepart_5895244c3bcf_3cc3fb80359114096096--


From nobody Fri Feb  3 16:48:25 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.514
X-Spam-Level: 
X-Spam-Status: No, score=-4.514 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-3.199, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=CkSdbd1UdmQcvRQghYAFMpZ0tAc=; b=Ux3kE68GEs7v1bpL evtugYEjUWcfceqIzYI6g5sUtMGG/JHYiaZmPaBUulKiX+P0qWYAdB424BKd4n1o Dt6KIzsvfXraq8Pf0k+5nBWH8qQ4M08dPOKpe2wGq/TB3h7UVunE9cFJIu+LLCby LjCZW7kv5HvkgImfqKv96zrG3qU=
Date: Fri, 03 Feb 2017 16:48:19 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589524d35d047_72cb3fc6af73313c234417"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/mRjq_Vsko5vWI_WhNThSZga1Rc4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4128.1486169304.4842.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 04 Feb 2017 00:48:23 -0000

----==_mimepart_589524d35d047_72cb3fc6af73313c234417
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame's payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of "https", 
+* a host that is reflected in a `subjectAltName` of the connection's TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection's remote port on the client. 

Yeah. need to think about how to best specify that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_589524d35d047_72cb3fc6af73313c234417
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame&#39;s payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of &quot;https&quot;, 
+* a host that is reflected in a `subjectAltName` of the connection&#39;s TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection&#39;s remote port on the client. 
</pre>
<p>Yeah. need to think about how to best specify that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPKh839Ouyr-Bevlecpp67XcULO2ks5rY8rTgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyH38GUUUR3csW0BstwqsNaYyAWLdks5rY8rTgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_589524d35d047_72cb3fc6af73313c234417--


From nobody Mon Feb  6 16:52:45 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Y33MPhdpvbtUwElIfjqMT2bv5MU=; b=CEJQeH04gqlI+r2U LRP1Vf4WbvzvaR7EmoIWiK4+SxFpiaV0rzWLfNvk6LTOPCCmYpbJdnlKGlJFg1B4 MecxY1ApKo+ca57vNqMdAqZcNe9Zf86gv1KZEzXsBQoxnZwR9VVOAh4y3MdG7hNN kvokzx/wh0obmo66mnGL9/FIn0Y=
Date: Mon, 06 Feb 2017 16:52:01 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58991a31d3b1c_eb83fc7fe6b51382006ee"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/2955EO6narJnu5uuBa3Y569y1lQ>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.380.1486428765.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 00:52:43 -0000

----==_mimepart_58991a31d3b1c_eb83fc7fe6b51382006ee
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 2 commits.

2315727  defer checks on origin to use
8520938  move note about case to server-ops


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/213b958c421f2077ea86295d3b3ae753bfb04317..85209385ab88ed6d90f2507d47fc2e7865516a6e

----==_mimepart_58991a31d3b1c_eb83fc7fe6b51382006ee
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 2 commits.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/2315727" class="commit-link">2315727</a>  defer checks on origin to use</li>
  <li><a href="https://github.com/httpwg/http-extensions/commit/8520938" class="commit-link">8520938</a>  move note about case to server-ops</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/213b958c421f2077ea86295d3b3ae753bfb04317..85209385ab88ed6d90f2507d47fc2e7865516a6e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyCdtjHqt3mS_2cWdDNmgmF7qF6n3ks5rZ8AxgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKMZJ6WARu6c3Z-ukmrZbTn3wli8ks5rZ8AxgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/213b958c421f2077ea86295d3b3ae753bfb04317..85209385ab88ed6d90f2507d47fc2e7865516a6e"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 2 commits in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/213b958c421f2077ea86295d3b3ae753bfb04317..85209385ab88ed6d90f2507d47fc2e7865516a6e"}}}</script>

----==_mimepart_58991a31d3b1c_eb83fc7fe6b51382006ee--


From nobody Mon Feb  6 16:53:04 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.886
X-Spam-Level: 
X-Spam-Status: No, score=-3.886 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=T0PD52bnAGsqz2Cs/Y3jstA3aCI=; b=bFAFeFfjMtx5xJwM gFL53th4QTKFiOAsesJamqL37l941wGJN4pAmOfugKmX8YPuO/hQj/zxFzttkneS +o4oP/r7GGy1/T/JaRQMfGzeWBJ40KIGo1+D3fpTEtEmooAIooCaFiGe/agiTmBS bC+QFF0QjC++CbUZncHyjXeVExI=
Date: Mon, 06 Feb 2017 16:52:50 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58991a628604_65423f8b2b26d1306855a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/uI1f1QiLa2JxI36ZUuQff5VcEHQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.381.1486428781.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 00:52:58 -0000

----==_mimepart_58991a628604_65423f8b2b26d1306855a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



> +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame's payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of "https", 
+* a host that is reflected in a `subjectAltName` of the connection's TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection's remote port on the client. 

@mcmanus see latest commit; I defer the cert checks until use of the origin, and I think that takes care of the concerns here. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_58991a628604_65423f8b2b26d1306855a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt; +specification.
+
+The ORIGIN frame is processed hop-by-hop. An intermediary MUST NOT forward ORIGIN frames. Clients
+configured to use a proxy MUST ignore any ORIGIN frames received from it.
+
+Each ASCII-Origin field in the frame&#39;s payload MUST be parsed as an ASCII serialisation of an
+origin ({{!RFC6454}}, Section 6.2). If parsing fails, the field MUST be ignored.
+
+Senders should note that, as per {{!RFC6454}} Section 4, the values in an ORIGIN header need to be
+case-normalised before serialisation.
+
+Once parsed, the value MUST have:
+
+* a scheme of &quot;https&quot;, 
+* a host that is reflected in a `subjectAltName` of the connection&#39;s TLS certificate (using the wildcard rules defined in {{!RFC2818}}, Section 3.1), and 
+* a port that reflects the connection&#39;s remote port on the client. 
</pre>
<p><a href="https://github.com/mcmanus" class="user-mention">@mcmanus</a> see latest commit; I defer the cert checks until use of the origin, and I think that takes care of the concerns here.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHu3eUQDv3Su-MPn0QBKDvdUjVOaks5rZ8BigaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyAOsTFsNH4WPlIivEg0F1_wVKIimks5rZ8BigaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_58991a628604_65423f8b2b26d1306855a--


From nobody Mon Feb  6 18:15:22 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.616
X-Spam-Level: 
X-Spam-Status: No, score=-0.616 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=jDDSNjm6+fiI83DnSku6JCzh1NI=; b=pKxY4V9qanHyvz2R px2ii7ICgdRNtv1yPgrC01JCxbk5Xdn65xyTfa2NHVGIl0VAn1K6LBg+xQCiW8St ozJMEaNk4cmj6jYo358CoHwwckHZvzI+CN/9dVNqZRsT5LmivisRhH0qhEmXqosI xZcVW/ZMFo2wbaOCEfYPFUwak/M=
Date: Mon, 06 Feb 2017 18:15:17 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58992db56a177_14bd3fd45f45513c1687b1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/RLWIlyArvWdXuQH8Cl04SjGRzXI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.409.1486433721.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 02:15:21 -0000

----==_mimepart_58992db56a177_14bd3fd45f45513c1687b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot commented on this pull request.



>  
-The ORIGIN frame allows the server to modify the Origin Set. In particular:
+  - Scheme: "https"
+  - Host: the value sent in Server Name Indication ({{!RFC6066}} Section 3), converted to lower case
+  - Port: the local port of the connection on the server

I'm inclined to think that if you want to host an alternative service and send ORIGIN, you need to explicitly list the alternative in ORIGIN. The client *could* make some assumptions, but that doesn't seem great. Thoughts?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285
----==_mimepart_58992db56a177_14bd3fd45f45513c1687b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/285">draft-ietf-httpbis-origin-frame.md</a>:</p>
<pre style='color:#555'>&gt;  
-The ORIGIN frame allows the server to modify the Origin Set. In particular:
+  - Scheme: &quot;https&quot;
+  - Host: the value sent in Server Name Indication ({{!RFC6066}} Section 3), converted to lower case
+  - Port: the local port of the connection on the server
</pre>
<p>I'm inclined to think that if you want to host an alternative service and send ORIGIN, you need to explicitly list the alternative in ORIGIN. The client <em>could</em> make some assumptions, but that doesn't seem great. Thoughts?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIMyTdudf61SfJpA-A3LLg6YDYQAks5rZ9O1gaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLuLrumUmRKgYBeOhPUke8OPqaI-ks5rZ9O1gaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot commented on #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285"}}}</script>
----==_mimepart_58992db56a177_14bd3fd45f45513c1687b1--


From nobody Mon Feb  6 18:15:57 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=5su96QjeHamco2UDQKksF/L0MHE=; b=SIO/xrtZpRD6Oq3I 7edO+caSDB482f8FhTurm099ni4ZzertmCakNa12kHbELe7G+TukOLITf23niRsM RlNh8w4MvWpqYecz3CLOQszZtjG5XT/6WgtDGisKIRtBw28z37ogVhrBUN21fbJh oT47tP0YNRcj7a8xQ+i+//oTaGs=
Date: Mon, 06 Feb 2017 18:15:53 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58992dd9322df_3e283f8e7886114095193"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/qWHWkN8Oh1CaEpL954YpQEy5szQ>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.410.1486433756.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 02:15:56 -0000

----==_mimepart_58992dd9322df_3e283f8e7886114095193
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

6b3b761  correct port


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/85209385ab88ed6d90f2507d47fc2e7865516a6e..6b3b76186c3eecbeace6bbd7bbbb8a040b502006

----==_mimepart_58992dd9322df_3e283f8e7886114095193
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/6b3b761" class="commit-link">6b3b761</a>  correct port</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/85209385ab88ed6d90f2507d47fc2e7865516a6e..6b3b76186c3eecbeace6bbd7bbbb8a040b502006">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyCtOj8_Nf-eBXHjjsJLpDC6RTNdNks5rZ9PZgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyHv0R6O3NSvhgPvaoZ_s1o00K8DAks5rZ9PZgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/85209385ab88ed6d90f2507d47fc2e7865516a6e..6b3b76186c3eecbeace6bbd7bbbb8a040b502006"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/85209385ab88ed6d90f2507d47fc2e7865516a6e..6b3b76186c3eecbeace6bbd7bbbb8a040b502006"}}}</script>

----==_mimepart_58992dd9322df_3e283f8e7886114095193--


From nobody Mon Feb  6 21:06:45 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=4Cv3dwndCY6TrUloqi0ncPuP93E=; b=mNlrjys/hfcRiKyq IzQUDNolnyc57DhSYx3iUgNESAsM/P/pQItQ7QHqeYmrW+SQmkmwu4jsTWyFCO47 q4ZZ19HvkFbe8ESCdxDd7/C5yKd77J1zXYAZI7D3maapLo2FfC6FhJYC0dupHQzO 2jwOAW4I9GZ6z/ZnOzdsK+EvwcA=
Date: Mon, 06 Feb 2017 21:06:40 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/228@github.com>
References: <httpwg/http-extensions/issues/228@github.com>
Subject: Re: [httpwg/http-extensions] Digest algorithm (#228)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589955e013a5a_67163fb449a1d140291733"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/iTf7LcjTb_DMtkXf1dIj2RzH024>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.425.1486444004.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:06:44 -0000

----==_mimepart_589955e013a5a_67163fb449a1d140291733
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That's very helpful, thanks. Given that, I think we can close this issue with no action (reopening if we learn something new, of course).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/228#issuecomment-277902931
----==_mimepart_589955e013a5a_67163fb449a1d140291733
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That's very helpful, thanks. Given that, I think we can close this issue with no action (reopening if we learn something new, of course).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/228#issuecomment-277902931">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyB-rIV4JXy8_B_d-zaEzq8wKPq01ks5rZ_vggaJpZM4Jo9bS">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyIf-BCB54jhOpcIzOON4vaPcGu8zks5rZ_vggaJpZM4Jo9bS.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/228#issuecomment-277902931"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot in #228: That's very helpful, thanks. Given that, I think we can close this issue with no action (reopening if we learn something new, of course)."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/228#issuecomment-277902931"}}}</script>
----==_mimepart_589955e013a5a_67163fb449a1d140291733--


From nobody Mon Feb  6 21:07:06 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=HzPY59rDCsOropYplsA9Ze3i874=; b=nRUxB56Wz4YQwx/P piaslps0MPBx/rWxqRpqXDiPgB9wkKXD5IVF+GsqnXJGDQEEXleUSllTu4cUszpn 5Cmh2y24EsmbAlWoAWJfyq4d103vOHq9/65RobWnWPA+85F7MC6oPSrXfZMO39ZH 1NnVBUiiphu1IQ0GOJR81rWYPp0=
Date: Mon, 06 Feb 2017 21:06:40 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/228@github.com>
References: <httpwg/http-extensions/issues/228@github.com>
Subject: Re: [httpwg/http-extensions] Digest algorithm (#228)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589955e0fe96_62dd3fa15da95130266458"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/8tXopPR0Tfx0HK6_N1o6W37NaaQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.426.1486444025.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:07:04 -0000

----==_mimepart_589955e0fe96_62dd3fa15da95130266458
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #228.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/228#event-951492572
----==_mimepart_589955e0fe96_62dd3fa15da95130266458
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a href="https://github.com/httpwg/http-extensions/issues/228" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/228" data-id="172244983" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#228</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/228#event-951492572">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyB-rIV4JXy8_B_d-zaEzq8wKPq01ks5rZ_vggaJpZM4Jo9bS">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyIf-BCB54jhOpcIzOON4vaPcGu8zks5rZ_vggaJpZM4Jo9bS.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/228#event-951492572"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Closed #228."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/228#event-951492572"}}}</script>
----==_mimepart_589955e0fe96_62dd3fa15da95130266458--


From nobody Mon Feb  6 21:25:31 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.641
X-Spam-Level: 
X-Spam-Status: No, score=-4.641 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=xJNQqtTj56N66tAoYYSsi4bYVsE=; b=XxcUySfgTOVLX8/F Qe+SZSXVhVJanIkBBHvf0fIIcLuT/8feX7Ovw8khRu5679BHUIKUvfdkymSFWvnf mMxC2oVwD8rZSoCCz07Dzx+PjyUdvD50kExkd2FyxazuFw6LpSoZAjwqaaiDl1BV tY5iz6f4QtTDAqxCQMt+4hBx7to=
Date: Mon, 06 Feb 2017 21:25:24 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/187@github.com>
References: <httpwg/http-extensions/issues/187@github.com>
Subject: Re: [httpwg/http-extensions] Lifetime of Key headers (#187)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58995a44a08fd_8ef3fc6d2d2d13c4913"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/aZ8VJ3blHMRw_9DdctMZfFDy1ac>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.434.1486445130.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:25:30 -0000

----==_mimepart_58995a44a08fd_8ef3fc6d2d2d13c4913
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That was the intent, yes.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/187#issuecomment-277905075
----==_mimepart_58995a44a08fd_8ef3fc6d2d2d13c4913
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That was the intent, yes.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/187#issuecomment-277905075">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyBK6eUHKAG-yXn3xaIo6fUpAYBBvks5raABEgaJpZM4Iq3Z4">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGvCbGKpIQPA-x9btZhh3drZ4Bx4ks5raABEgaJpZM4Iq3Z4.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/187#issuecomment-277905075"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot in #187: That was the intent, yes."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/187#issuecomment-277905075"}}}</script>
----==_mimepart_58995a44a08fd_8ef3fc6d2d2d13c4913--


From nobody Mon Feb  6 21:27:37 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=dNKfE9DodugYrsPA3sZmzaCS4ZY=; b=bqbPUWuwC9U2Zqsn VbbZXcT2GI8qj8leQiM15wWrSGRn7MexkDEyb6s2AzkaGazHYUWImreIz3Pfgvmy 7gvDG7qC8PEAsMLMtviyF5ler1GPFPopcS2ntf7Jh1Y5RadAqUIPTZLSpkzict4b MQGFNyr3bHrUcQqxThBWXgRFUQM=
Date: Mon, 06 Feb 2017 21:27:33 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/276@github.com>
References: <httpwg/http-extensions/pull/276@github.com>
Subject: Re: [httpwg/http-extensions] fix typo bit -> be (#276)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58995ac517c22_54bf3fba655bd13c35789a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/q9l_GlatD8bsuQ2AKmZ1OWeZfJk>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.435.1486445256.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:27:36 -0000

----==_mimepart_58995ac517c22_54bf3fba655bd13c35789a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #276.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/276#event-951507055
----==_mimepart_58995ac517c22_54bf3fba655bd13c35789a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/276" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/276" data-id="194432005" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#276</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/276#event-951507055">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMbjmAdHwVS11S2Bk-KSIAx29Jpdks5raADFgaJpZM4LIO1w">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyF8n7xFfQDnJ1gQ4JHrJC-3m6fJyks5raADFgaJpZM4LIO1w.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/276#event-951507055"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #276."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/276#event-951507055"}}}</script>
----==_mimepart_58995ac517c22_54bf3fba655bd13c35789a--


From nobody Mon Feb  6 21:29:13 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.268
X-Spam-Level: 
X-Spam-Status: No, score=-7.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Mon, 06 Feb 2017 21:29:08 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486445348; bh=D+zEuyo6wUVW9JfhKNPUazFoscoOh6wwJoYzoLm/7Jg=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PMWuylap1hREx1RJgSSMD+fHSHEEmeo7/ZPwz4ROZQWXRAcuVo8tc3P14i7DjE97Q cqEV+kCBu7qRxsGBCj2uTWSimZ26busRs1YImCqkSVPar4jo2Ra3M7BfDL6NRMP+V9 jQroCYpIQtmez4ad0GWI8u8NJqVWSCysxFl8a6Rw=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/275@github.com>
References: <httpwg/http-extensions/pull/275@github.com>
Subject: Re: [httpwg/http-extensions] spell Golomb correctly (#275)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58995b24b2ce5_5db03fc6d2d2d13c115090"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/qpdOsAFnmPLvu9j9EA7cXV41nUo>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.436.1486445352.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:29:12 -0000

----==_mimepart_58995b24b2ce5_5db03fc6d2d2d13c115090
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #275.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/275#event-951508157
----==_mimepart_58995b24b2ce5_5db03fc6d2d2d13c115090
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/275" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/275" data-id="194426523" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#275</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/275#event-951508157">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyH0EueP0JCr96Qhy3KSSe4Do0QC6ks5raAEkgaJpZM4LINVY">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyClJYKZ7hl64piDtlc1Gz7bHenBTks5raAEkgaJpZM4LINVY.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/275#event-951508157"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #275."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/275#event-951508157"}}}</script>
----==_mimepart_58995b24b2ce5_5db03fc6d2d2d13c115090--


From nobody Mon Feb  6 21:29:32 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=crR0hsbkPqjPTt2CzhiliiNisgo=; b=CsbCLtUPk7SnYZee CNskWNp/NMoql6R1aYgQp0P0/AoR+LO1xJYcBYy5KLbaAytdQ6xTfPG1WGvxZw8q 4DGBEQbBAkFpWcnERMLRa998LRurYoBTL/n4jxfobxQd41wlOtbdxIiYswrWNQhD TK9Xn7By8ODEr1SnJKargn6+qrc=
Date: Mon, 06 Feb 2017 21:29:28 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/244@github.com>
References: <httpwg/http-extensions/pull/244@github.com>
Subject: Re: [httpwg/http-extensions] incorrect IPR (#244)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58995b381588d_1ad23fd34168f138229442"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/VNmF_K4CQr8exinm6coaisKVMqM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.437.1486445372.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 05:29:31 -0000

----==_mimepart_58995b381588d_1ad23fd34168f138229442
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #244.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/244#event-951508341
----==_mimepart_58995b381588d_1ad23fd34168f138229442
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/244" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/244" data-id="182217890" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#244</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/244#event-951508341">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyBqr_R_54vaZGH_lHjw7Es3W-uLPks5raAE4gaJpZM4KTbpQ">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyPvYS4itzifnUYSJ9uFBvsw4tVE9ks5raAE4gaJpZM4KTbpQ.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/244#event-951508341"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #244."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/244#event-951508341"}}}</script>
----==_mimepart_58995b381588d_1ad23fd34168f138229442--


From nobody Tue Feb  7 04:22:03 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.616
X-Spam-Level: 
X-Spam-Status: No, score=-0.616 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=SCQcMacEBGFJcOYDBCO/zJIhShM=; b=lzWOLUljFLPMGZL8 gWBlYAGy43Rwy0f81MhCP+bvT5xiQHzbxkxa9Yh4/NJjet1gsq/Iw4SCLzy0c9iM on9/6iBhoY+zwwEvA1+Tnp0AGxyd0oggzcQjCvJmtEaum4UkI+FwQhxmiaox8BYy QU1xPqfKv48iiUKpzqNyqN5odGg=
Date: Tue, 07 Feb 2017 04:21:36 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Cite a recent HTML spec (#292)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5899bbd08cc0e_65293fd94ca371301351fb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/mKXOkVhuCPu3Y2pQeqUufv7du0I>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.519.1486470123.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 12:22:02 -0000

----==_mimepart_5899bbd08cc0e_65293fd94ca371301351fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/292

-- Commit Summary --

  * Cite a recent HTML spec

-- File Changes --

    M draft-ietf-httpbis-expect-ct.md (2)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/292.patch
https://github.com/httpwg/http-extensions/pull/292.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/292

----==_mimepart_5899bbd08cc0e_65293fd94ca371301351fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/292'>https://github.com/httpwg/http-extensions/pull/292</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Cite a recent HTML spec</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/292/files#diff-0">draft-ietf-httpbis-expect-ct.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/292.patch'>https://github.com/httpwg/http-extensions/pull/292.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/292.diff'>https://github.com/httpwg/http-extensions/pull/292.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/292">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyJ664OtJuLmQxNy86qjSAtnY738Mks5raGHQgaJpZM4L5a5G">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyJALbLDeyg7GRxFSf6APoYACeaARks5raGHQgaJpZM4L5a5G.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/292"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Cite a recent HTML spec (#292)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/292"}}}</script>

----==_mimepart_5899bbd08cc0e_65293fd94ca371301351fb--


From nobody Tue Feb  7 09:55:48 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.019
X-Spam-Level: 
X-Spam-Status: No, score=-2.019 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=KYNjZRqASiAN7c/Jl0FtprRZ5v8=; b=i4jdIXHe7oUtDhrD lkWap19tvSs4kYarnTpOP+Oy6lPWERwiShqusjwVs8z92i1CO7aFfBw2K1kA0YDu VY/tuuW+ubOtZBhfKLeOJx7sYm6g2nZabzg1ZmK4JLK8YciCBW45FayS4GXiEiPT RQj6y/BjwqmmUp6k4fvqcUOxlcM=
Date: Tue, 07 Feb 2017 09:55:37 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589a0a19d3735_6ac83fd6ce65f13c489e5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/vhnYLvG9y1Xo7BWpHPtue39E5x8>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.621.1486490147.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Feb 2017 17:55:46 -0000

----==_mimepart_589a0a19d3735_6ac83fd6ce65f13c489e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

On Mon, Feb 6, 2017 at 9:15 PM, Mark Nottingham <notifications@github.com>
wrote:

> I'm inclined to think that if you want to host an alternative service and
> send ORIGIN, you need to explicitly list the alternative in ORIGIN. The
> client *could* make some assumptions, but that doesn't seem great.
> Thoughts?
>

wait - no. You wouldn't send the alternative in the ORIGIN frame, you would
send the origin that you are the alternative for, right? that would make
sense - if you want to use an alternative you can't rely on the SNI default.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#issuecomment-278083944
----==_mimepart_589a0a19d3735_6ac83fd6ce65f13c489e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

On Mon, Feb 6, 2017 at 9:15 PM, Mark Nottingham &lt;notifications@github.co=
m&gt;<br>
wrote:<br>
<br>
&gt; I&#39;m inclined to think that if you want to host an alternative serv=
ice and<br>
&gt; send ORIGIN, you need to explicitly list the alternative in ORIGIN. Th=
e<br>
&gt; client *could* make some assumptions, but that doesn&#39;t seem great.=
<br>
&gt; Thoughts?<br>
&gt;<br>
<br>
wait - no. You wouldn&#39;t send the alternative in the ORIGIN frame, you w=
ould<br>
send the origin that you are the alternative for, right? that would make<br>
sense - if you want to use an alternative you can&#39;t rely on the SNI def=
ault.<br>


<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/pull/285#issuecomment-278083944">view it on GitHub</a>, or <a =
href=3D"https://github.com/notifications/unsubscribe-auth/AORpyK_P22758FG3D=
Tnmca-PiH6XcdfTks5raLAZgaJpZM4LzieL">mute the thread</a>.<img alt=3D"" heig=
ht=3D"1" src=3D"https://github.com/notifications/beacon/AORpyP7Z3nZP9g4IIqu=
yVQWk6360y2Ieks5raLAZgaJpZM4LzieL.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
pull/285#issuecomment-278083944"></link>
  <meta itemprop=3D"name" content=3D"View Pull Request"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Pull Request on GitHub"=
></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mcmanus in #285: On=
 Mon, Feb 6, 2017 at 9:15 PM, Mark Nottingham \u003cnotifications@github.co=
m\u003e\nwrote:\n\n\u003e I'm inclined to think that if you want to host an=
 alternative service and\n\u003e send ORIGIN, you need to explicitly list t=
he alternative in ORIGIN. The\n\u003e client *could* make some assumptions,=
 but that doesn't seem great.\n\u003e Thoughts?\n\u003e\n\nwait - no. You w=
ouldn't send the alternative in the ORIGIN frame, you would\nsend the origi=
n that you are the alternative for, right? that would make\nsense - if you =
want to use an alternative you can't rely on the SNI default.\n"}],"action"=
:{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensio=
ns/pull/285#issuecomment-278083944"}}}</script>=

----==_mimepart_589a0a19d3735_6ac83fd6ce65f13c489e5--


From nobody Wed Feb  8 12:28:00 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.784
X-Spam-Level: 
X-Spam-Status: No, score=-4.784 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=oZ/xqKiSmAPOp1zJP03d6b+KzDQ=; b=nfg07V67+iviI4Nu A266oCsmXXkjaUebL35D5GqfjUVMEmPFpEbiZgMuc8yxdp50HjZza4N3pZUMOwyh 6IuRlyte7Gmw+VIt1vIENqNDnIrRpfF/LIfVxZl4vIOJDEZXA+W7BOVpjfrFGhAJ 4aVrfC8BWd/WQXfgHs/EkGdRNck=
Date: Wed, 08 Feb 2017 12:27:54 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] don't cite RFC 2616, it's obsolete (#293)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589b7f4a63b77_71b83f88ca74f134106678"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/R9QQbCdNeYSUcif12tPM00u5Sh4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1016.1486585679.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 08 Feb 2017 20:27:59 -0000

----==_mimepart_589b7f4a63b77_71b83f88ca74f134106678
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/293

-- Commit Summary --

  * don't cite RFC 2616, it's obsolete

-- File Changes --

    M draft-ietf-httpbis-expect-ct.md (2)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/293.patch
https://github.com/httpwg/http-extensions/pull/293.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/293

----==_mimepart_589b7f4a63b77_71b83f88ca74f134106678
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/293'>https://github.com/httpwg/http-extensions/pull/293</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>don&#39;t cite RFC 2616, it&#39;s obsolete</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/293/files#diff-0">draft-ietf-httpbis-expect-ct.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/293.patch'>https://github.com/httpwg/http-extensions/pull/293.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/293.diff'>https://github.com/httpwg/http-extensions/pull/293.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/293">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHFTj2qX--rF6BHtlwjhnM6aU11Wks5raiVKgaJpZM4L7UeE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyCWzOYqTU2on9ejdwlfToEqJQFRIks5raiVKgaJpZM4L7UeE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/293"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"don't cite RFC 2616, it's obsolete (#293)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/293"}}}</script>

----==_mimepart_589b7f4a63b77_71b83f88ca74f134106678--


From nobody Wed Feb  8 12:38:27 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.475
X-Spam-Level: 
X-Spam-Status: No, score=-0.475 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=X3QTEVefNFk+xXONU/J3+E+TbUI=; b=gWOBlzGSca3z1DVd QgGbh+ou1zWUMGvtcLUyWggj32Myt5IxxUk+vWZc51q3UBTbFzNgBDwPBG86FVbk H61ZDcb1e0ZBXL6TZT85YudRM/GsVkJlf0YlOXrwMVMpAO86OrZdx49DbAV2SauI Sf0gUdDrGZCKHD1vmoRRZ0/LGMw=
Date: Wed, 08 Feb 2017 12:38:20 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/293@github.com>
References: <httpwg/http-extensions/pull/293@github.com>
Subject: Re: [httpwg/http-extensions] don't cite RFC 2616, it's obsolete (#293)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589b81bc54b19_b723f88ca74f13430071"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/4N2FjhaQ9dnjxx1VwvdCOWhr7L4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1017.1486586307.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 08 Feb 2017 20:38:26 -0000

----==_mimepart_589b81bc54b19_b723f88ca74f13430071
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/293#issuecomment-278454182
----==_mimepart_589b81bc54b19_b723f88ca74f13430071
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/293#issuecomment-278454182">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyB6qdnLGFVx-4LYQkntqZPeU9mfjks5raie8gaJpZM4L7UeE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDLJ0dWI8woKiQs9OZm9ZC3IxQH8ks5raie8gaJpZM4L7UeE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/293#issuecomment-278454182"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@estark37 in #293: Thanks!"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/293#issuecomment-278454182"}}}</script>
----==_mimepart_589b81bc54b19_b723f88ca74f13430071--


From nobody Wed Feb  8 12:38:37 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.703
X-Spam-Level: 
X-Spam-Status: No, score=-2.703 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=pDE9hHP0FJsM88OssXGJIr3FUUg=; b=g9OzagwoIWge/JwT /F1HmqjhcEGQRCb0Y1mXu5mqay2WIg9HwvKXVZxDi57HRZI5e6+XGdjCkHIom20x bYbZsA8S3i1pcYAUxjXGiteg2cNeRZI39dxqSJIC5g4WOmcLuzh0JQ2iESP93Zz/ hbagEpwvuYB77qvoMfqe9TUqVaw=
Date: Wed, 08 Feb 2017 12:38:17 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/293@github.com>
References: <httpwg/http-extensions/pull/293@github.com>
Subject: Re: [httpwg/http-extensions] don't cite RFC 2616, it's obsolete (#293)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589b81b94d259_13c03fcce52d51302657d4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/cnly1EmJyw5nt2bkqDaGM-HzE28>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1018.1486586317.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 08 Feb 2017 20:38:37 -0000

----==_mimepart_589b81b94d259_13c03fcce52d51302657d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #293.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/293#event-954524355
----==_mimepart_589b81b94d259_13c03fcce52d51302657d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/293" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/293" data-id="206314767" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#293</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/293#event-954524355">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyN_0R-3LFpdWVUQ50Dqy-65ywmlEks5raie5gaJpZM4L7UeE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyPtDQI2g9mCev26H_Gr32C3YgSY3ks5raie5gaJpZM4L7UeE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/293#event-954524355"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #293."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/293#event-954524355"}}}</script>
----==_mimepart_589b81b94d259_13c03fcce52d51302657d4--


From nobody Wed Feb  8 15:33:42 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.021
X-Spam-Level: 
X-Spam-Status: No, score=-2.021 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=/PuLBluJE9DFZGzne8GqaZ+W4IM=; b=EYpxwweO1TcCoIPY yD+MAA7WwZdJIjGmopZaY/s8trOPUVXzr8MGL+PCaLYh9FCeMHr5WQFH4EG8/tJQ DTBrDs04iCp4pUayjJ0Thq6mPTPFlyHXsx45pqNWNGCfSIFdPeGnNTaobHXDcDf8 LzzzzKCjNq+9+41yY0Phc7AV2Ss=
Date: Wed, 08 Feb 2017 15:31:58 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Issues from old repo (#294)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589baa6ebdf1c_63b33fa2b540913c195783"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/OHFGMiHG191QHRYJqw_cxon01oI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1092.1486596822.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 08 Feb 2017 23:33:41 -0000

----==_mimepart_589baa6ebdf1c_63b33fa2b540913c195783
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I want to address these issues that were filed in the old repo https://github.com/bifurcation/expect-ct/:

- [ ] https://github.com/bifurcation/expect-ct/issues/18
- [ ] https://github.com/bifurcation/expect-ct/issues/16
- [ ] https://github.com/bifurcation/expect-ct/issues/7
- [ ] https://github.com/bifurcation/expect-ct/issues/6
- [ ] https://github.com/bifurcation/expect-ct/issues/4

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/294
----==_mimepart_589baa6ebdf1c_63b33fa2b540913c195783
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I want to address these issues that were filed in the old repo <a href="https://github.com/bifurcation/expect-ct/">https://github.com/bifurcation/expect-ct/</a>:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled=""> <a href="https://github.com/bifurcation/expect-ct/issues/18" class="issue-link js-issue-link" data-url="https://github.com/bifurcation/expect-ct/issues/18" data-id="204094997" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">bifurcation/expect-ct#18</a></li>
<li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled=""> <a href="https://github.com/bifurcation/expect-ct/issues/16" class="issue-link js-issue-link" data-url="https://github.com/bifurcation/expect-ct/issues/16" data-id="199501918" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">bifurcation/expect-ct#16</a></li>
<li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled=""> <a href="https://github.com/bifurcation/expect-ct/issues/7" class="issue-link js-issue-link" data-url="https://github.com/bifurcation/expect-ct/issues/7" data-id="187192151" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">bifurcation/expect-ct#7</a></li>
<li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled=""> <a href="https://github.com/bifurcation/expect-ct/issues/6" class="issue-link js-issue-link" data-url="https://github.com/bifurcation/expect-ct/issues/6" data-id="184974493" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">bifurcation/expect-ct#6</a></li>
<li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled=""> <a href="https://github.com/bifurcation/expect-ct/issues/4" class="issue-link js-issue-link" data-url="https://github.com/bifurcation/expect-ct/issues/4" data-id="184974289" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">bifurcation/expect-ct#4</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/294">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyGfRriu6C8jD0FYKrWbRHm8NtMyRks5ralBugaJpZM4L7gib">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyPT14853yjyqYAMh0OFYDTmKU54Sks5ralBugaJpZM4L7gib.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/294"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Issues from old repo (#294)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/294"}}}</script>
----==_mimepart_589baa6ebdf1c_63b33fa2b540913c195783--


From nobody Wed Feb  8 18:28:49 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.483
X-Spam-Level: 
X-Spam-Status: No, score=-2.483 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Ay1+rkZv6ELZWRPwi0FW0kSJNm0=; b=OQM0NMSqee2+tYdS 0sk6g4pjmVgyW4nicJ0QCiCo+h7pW0ZU7112dzwpCTwJJx6rY+gp9nPc1yfjagZP UQcjbzcLH3+c2b/7BpJfgrtaMIW7tOFkELEWRuP1kdsO3JapZ4hqjWSwy9NH/Y7M ohYsBA9I1sUOt3wSRLwo/u2ubTQ=
Date: Wed, 08 Feb 2017 18:28:43 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/268@github.com>
References: <httpwg/http-extensions/issues/268@github.com>
Subject: Re: [httpwg/http-extensions] Enabling O(1) removal from digest (#268)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589bd3dbb06d3_11cc3fa005333134992b1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/pm5nhs5oX6-dDJvglfJgmobnaeA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1146.1486607328.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Feb 2017 02:28:47 -0000

----==_mimepart_589bd3dbb06d3_11cc3fa005333134992b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Anyone willing to do a pull request for Cuckoo filters? The paper has better algorithm definitions, so we can avoid some of the details, but we still need to define a wire serialisation. 

Maybe use https://github.com/Leechael/python-cuckoo/blob/master/cuckoofilter/cuckoofilter.py#L143 as a starting point and figure out if we need to make changes / optimisations? That one appears to gzip pretty well, so there's likely space for improvement.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/268#issuecomment-278528723
----==_mimepart_589bd3dbb06d3_11cc3fa005333134992b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Anyone willing to do a pull request for Cuckoo filters? The paper has be=
tter algorithm definitions, so we can avoid some of the details, but we sti=
ll need to define a wire serialisation.</p>
<p>Maybe use <a href=3D"https://github.com/Leechael/python-cuckoo/blob/mast=
er/cuckoofilter/cuckoofilter.py#L143">https://github.com/Leechael/python-cu=
ckoo/blob/master/cuckoofilter/cuckoofilter.py#L143</a> as a starting point =
and figure out if we need to make changes / optimisations? That one appears=
 to gzip pretty well, so there's likely space for improvement.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/268#issuecomment-278528723">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyIVVPZKIGFH=
eVK8xsB6YdEIKwlzEks5rannbgaJpZM4K1Rdh">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyHnsramDw6ONz=
ampjbrzxjkmHnOaks5rannbgaJpZM4K1Rdh.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/268#issuecomment-278528723"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot in #268: Anyon=
e willing to do a pull request for Cuckoo filters? The paper has better alg=
orithm definitions, so we can avoid some of the details, but we still need =
to define a wire serialisation. \r\n\r\nMaybe use https://github.com/Leecha=
el/python-cuckoo/blob/master/cuckoofilter/cuckoofilter.py#L143 as a startin=
g point and figure out if we need to make changes / optimisations? That one=
 appears to gzip pretty well, so there's likely space for improvement."}],"=
action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensio=
ns/issues/268#issuecomment-278528723"}}}</script>=

----==_mimepart_589bd3dbb06d3_11cc3fa005333134992b1--


From nobody Thu Feb  9 02:58:14 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.187
X-Spam-Level: 
X-Spam-Status: No, score=-6.187 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=t7sEoNJ91bls55IofowyTnGJ7bw=; b=F9gtjoMP9NRDQHDc gXg+3KRVvDE91OqeGvws1aaL8zjAQW/DZrt17FdPGluovlO7ZLyQ2EQrmjkfX+jP 9y3um+V4LqMya+hHKNdjNtDYX0LQcq4WY3I4TSO+tbQoa5c+t9642L1aRRyKd5DP 4hw/qmYM/oJPWzkwRZaHAqCd6dQ=
Date: Thu, 09 Feb 2017 02:58:08 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589c4b40e0029_77623fd2967b713833183c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/N5fRff5CrVCK68Q37qEMVFjH9Ro>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1189.1486637893.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Feb 2017 10:58:12 -0000

----==_mimepart_589c4b40e0029_77623fd2967b713833183c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Please note that such a requirement will significantly reduce the capability of servers to adapt the main HTML document to viewport dimensions, network conditions, etc. So while I understand the need to reduce passive fingerprinting, I think the decision should be on a per-hint basis and based on the info that the hints actually expose.

For example, I'd argue in the case of viewport dimensions and screen density, that info is already exposed in the UA string (along with other, more specific data on the user's device and browser), and the hints only make it easier to adapt content without a device DB, while not necessarily increasing fingerprinting capabilities.

As for network conditions, while exposing them may add data to the fingerprinter's toolbox, they can vary wildly between sessions (and even during a session), so I'd argue they don't necessarily increase fingerprinting capabilities.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-278610132
----==_mimepart_589c4b40e0029_77623fd2967b713833183c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Please note that such a requirement will significantly reduce the capabi=
lity of servers to adapt the main HTML document to viewport dimensions, net=
work conditions, etc. So while I understand the need to reduce passive fing=
erprinting, I think the decision should be on a per-hint basis and based on=
 the info that the hints actually expose.</p>
<p>For example, I'd argue in the case of viewport dimensions and screen den=
sity, that info is already exposed in the UA string (along with other, more=
 specific data on the user's device and browser), and the hints only make i=
t easier to adapt content without a device DB, while not necessarily increa=
sing fingerprinting capabilities.</p>
<p>As for network conditions, while exposing them may add data to the finge=
rprinter's toolbox, they can vary wildly between sessions (and even during =
a session), so I'd argue they don't necessarily increase fingerprinting cap=
abilities.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-278610132">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyCFcAVNBdUv=
vOxZDvfwZTCPvwvPvks5ravFAgaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyOWl3sg0su4EJ=
edgSJ0dDE18JhO2ks5ravFAgaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-278610132"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@yoavweiss in #284: =
Please note that such a requirement will significantly reduce the capabilit=
y of servers to adapt the main HTML document to viewport dimensions, networ=
k conditions, etc. So while I understand the need to reduce passive fingerp=
rinting, I think the decision should be on a per-hint basis and based on th=
e info that the hints actually expose.\r\n\r\nFor example, I'd argue in the=
 case of viewport dimensions and screen density, that info is already expos=
ed in the UA string (along with other, more specific data on the user's dev=
ice and browser), and the hints only make it easier to adapt content withou=
t a device DB, while not necessarily increasing fingerprinting capabilities=
.\r\n\r\nAs for network conditions, while exposing them may add data to the=
 fingerprinter's toolbox, they can vary wildly between sessions (and even d=
uring a session), so I'd argue they don't necessarily increase fingerprinti=
ng capabilities."}],"action":{"name":"View Issue","url":"https://github.com=
/httpwg/http-extensions/issues/284#issuecomment-278610132"}}}</script>=

----==_mimepart_589c4b40e0029_77623fd2967b713833183c--


From nobody Sat Feb 11 01:47:04 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.886
X-Spam-Level: 
X-Spam-Status: No, score=-8.886 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sat, 11 Feb 2017 01:47:00 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486806420; bh=wDJyTXA0ZhHZsaSKD+zSICt1w49lczHH76791iNcn1s=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FNl8nL8aegqcrogIIIXZmobRalUvF4TiL3In5V8Z9Oj+J/ikfawnV/6DqoMzSZLem wVpZsBiAkVlmYacSQU6QIB/kJsj4WuFxHgBQ1o9ZHYczGm9r1Bha+TCqiKi79eOHSO elZNV/nvhYW3vFdcZ1LnTJLfBui03hpHTwTrufFo=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589edd9443682_7ed23fa48fdf71401348bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/dObhayvjjXWihU6-vVn-gSjcjoM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1872.1486806424.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Feb 2017 09:47:03 -0000

----==_mimepart_589edd9443682_7ed23fa48fdf71401348bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

CH is not just for browsers. There are other types of clients: native apps that talk to own backends, internal HTTP clients that talk to image servers, and so on. As such, I don't think we're in a position to make sweeping formal (MUST) requirements for how/when support for these hints should be advertised or when they can be sent. 

Existing section for Accept-CH starts with "servers can advertise support".. which, I think, is the right approach. The other relevant section is...

https://tools.ietf.org/html/draft-ietf-httpbis-client-hints-03#section-2.1

> 2.1.  Sending Client Hints
> 
>   Clients control which Client Hint headers and their respective header
>   fields are communicated, based on their default settings, user
>   configuration and/or preferences.  The user can be given the choice
>   to enable, disable, or override specific hints.
>
>   The client and server, or an intermediate proxy, can use an opt-in
>   mechanism to negotiate which fields should be reported to allow for
>   efficient content adaption.

I believe the above already covers all the cases we brought up here and on the list?


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279133287
----==_mimepart_589edd9443682_7ed23fa48fdf71401348bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>CH is not just for browsers. There are other types of clients: native =
apps that talk to own backends, internal HTTP clients that talk to image =
servers, and so on. As such, I don't think we're in a position to make sw=
eeping formal (MUST) requirements for how/when support for these hints sh=
ould be advertised or when they can be sent.</p>
<p>Existing section for Accept-CH starts with "servers can advertise supp=
ort".. which, I think, is the right approach. The other relevant section =
is...</p>
<p><a href=3D"https://tools.ietf.org/html/draft-ietf-httpbis-client-hints=
-03#section-2.1">https://tools.ietf.org/html/draft-ietf-httpbis-client-hi=
nts-03#section-2.1</a></p>
<blockquote>
<p>2.1.  Sending Client Hints</p>
<p>Clients control which Client Hint headers and their respective header<=
br>
fields are communicated, based on their default settings, user<br>
configuration and/or preferences.  The user can be given the choice<br>
to enable, disable, or override specific hints.</p>
<p>The client and server, or an intermediate proxy, can use an opt-in<br>=

mechanism to negotiate which fields should be reported to allow for<br>
efficient content adaption.</p>
</blockquote>
<p>I believe the above already covers all the cases we brought up here an=
d on the list?</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-279133287">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
HOGMZ6yDJNfrjxlM13_ZbiaOLeYks5rbYOUgaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyMxyuo-6Fqx68WtibeTtUdP_bRhRks5rbYOUgaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-279133287"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@i=
grigorik in #284: CH is not just for browsers. There are other types of c=
lients: native apps that talk to own backends, internal HTTP clients that=
 talk to image servers, and so on. As such, I don't think we're in a posi=
tion to make sweeping formal (MUST) requirements for how/when support for=
 these hints should be advertised or when they can be sent. \r\n\r\nExist=
ing section for Accept-CH starts with \"servers can advertise support\"..=
 which, I think, is the right approach. The other relevant section is...\=
r\n\r\nhttps://tools.ietf.org/html/draft-ietf-httpbis-client-hints-03#sec=
tion-2.1\r\n\r\n\u003e 2.1.  Sending Client Hints\r\n\u003e \r\n\u003e   =
Clients control which Client Hint headers and their respective header\r\n=
\u003e   fields are communicated, based on their default settings, user\r=
\n\u003e   configuration and/or preferences.  The user can be given the c=
hoice\r\n\u003e   to enable, disable, or override specific hints.\r\n\u00=
3e\r\n\u003e   The client and server, or an intermediate proxy, can use a=
n opt-in\r\n\u003e   mechanism to negotiate which fields should be report=
ed to allow for\r\n\u003e   efficient content adaption.\r\n\r\nI believe =
the above already covers all the cases we brought up here and on the list=
?\r\n"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/h=
ttp-extensions/issues/284#issuecomment-279133287"}}}</script>=

----==_mimepart_589edd9443682_7ed23fa48fdf71401348bc--


From nobody Sat Feb 11 03:37:20 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.719
X-Spam-Level: 
X-Spam-Status: No, score=-2.719 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=9Wxr+H5bi+Fp/3MGsxO0VFfwbBQ=; b=Kb3GfzZbqpRYmCsH uIPYFQIpBuI0iLHMLUTUXzBmErzVvnLK/5zUZqOu2rrJZx9BLYyG5P/nDBcTESry 8WJkb+xHyixVH/dHUMwPj5rarfcgQZxlJjEA5HAmM7Pr/vfsMR7jBAGg2DPKUgim wC8MH9Ii3wr3u/vHlno0VFbEH2Q=
Date: Sat, 11 Feb 2017 03:37:15 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589ef76bcf104_130f3fa48fdf7140915b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/0kxtKz4cdPzwd7jj9-nnMO6WveU>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1873.1486813040.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Feb 2017 11:37:19 -0000

----==_mimepart_589ef76bcf104_130f3fa48fdf7140915b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If hints are capable of uniquely identifying a user's device then the data communicated is personal data. If it concerns a European resident then before it is processed, meaning collected or used, the user must give their consent. This is a legal requirement in Europe, which will be strongly enforced after the GDPR and the new ePrivacy Regulation come into force next year.
This inevitably means that sending an Accept-CH requires opt-in consent. If the browser does not require it then all the sites (in Europe or elsewhere if directed at European residents) will have to.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279138444
----==_mimepart_589ef76bcf104_130f3fa48fdf7140915b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>If hints are capable of uniquely identifying a user's device then the da=
ta communicated is personal data. If it concerns a European resident then b=
efore it is processed, meaning collected or used, the user must give their =
consent. This is a legal requirement in Europe, which will be strongly enfo=
rced after the GDPR and the new ePrivacy Regulation come into force next ye=
ar.<br>
This inevitably means that sending an Accept-CH requires opt-in consent. If=
 the browser does not require it then all the sites (in Europe or elsewhere=
 if directed at European residents) will have to.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-279138444">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyF3GxX8AoEe=
JEiQ6Eth4kF5ndN_nks5rbZ1rgaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyBHYCU9mcamQn=
Ic7piY1p2zI8Fx_ks5rbZ1rgaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-279138444"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@michael-oneill in #=
284: If hints are capable of uniquely identifying a user's device then the =
data communicated is personal data. If it concerns a European resident then=
 before it is processed, meaning collected or used, the user must give thei=
r consent. This is a legal requirement in Europe, which will be strongly en=
forced after the GDPR and the new ePrivacy Regulation come into force next =
year.\r\nThis inevitably means that sending an Accept-CH requires opt-in co=
nsent. If the browser does not require it then all the sites (in Europe or =
elsewhere if directed at European residents) will have to.\r\n\r\n"}],"acti=
on":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/i=
ssues/284#issuecomment-279138444"}}}</script>=

----==_mimepart_589ef76bcf104_130f3fa48fdf7140915b--


From nobody Sat Feb 11 04:43:47 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=j/dvpSASTIZK9cDGHSgsuHRMvXM=; b=J+VyucH19AMyTz0I Y9hiBhijFOd/GNSC9jASRtn0C2Cfq6BV0PGZgQO0eJTdMxfopzh+x5lBiOFcBnSJ GsDA5uZcWZUdWvAJSc/TNEc5n4a7pfxlNgXFuYD7gYFI2K16dGUuRDMyD3amkiWU a6UW87OBBIR6/a+Eou2alN4nJYc=
Date: Sat, 11 Feb 2017 04:43:42 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589f06fe55521_427b3fee74d7b138968f0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/slVLQPVsqXeVpHib5GPMNlHw4T4>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1876.1486817026.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Feb 2017 12:43:46 -0000

----==_mimepart_589f06fe55521_427b3fee74d7b138968f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That may be true for hints that are capable of uniquely identifying a user, but irrelevant for hints that are not. Therefore, we shouldn't impose a rule requiring an opt in for all hints.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279141602
----==_mimepart_589f06fe55521_427b3fee74d7b138968f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>That may be true for hints that are capable of uniquely identifying a user, but irrelevant for hints that are not. Therefore, we shouldn't impose a rule requiring an opt in for all hints.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-279141602">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPbSZGZ-xk-5ZxJqSGxAVg3VrUw3ks5rbaz-gaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKQt7L8DbA3oz5ffv_IUJHmtgN4Cks5rbaz-gaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-279141602"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@yoavweiss in #284: That may be true for hints that are capable of uniquely identifying a user, but irrelevant for hints that are not. Therefore, we shouldn't impose a rule requiring an opt in for all hints."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-279141602"}}}</script>
----==_mimepart_589f06fe55521_427b3fee74d7b138968f0--


From nobody Sat Feb 11 05:29:08 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.268
X-Spam-Level: 
X-Spam-Status: No, score=-7.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sat, 11 Feb 2017 05:29:03 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486819743; bh=Z4dmmrtqbBOT5p9C54PjA5raBEDNXg32HoaNPrDAA/Q=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jijgOJZaoULkAH72eaK0ne9DOoyWVOQ6DHe2AahlW4E2cBvW8NyvAF4W3EFSo5fm1 8shNf+Xk01xi4b2qZSdXfRWn6++i/iNDutEeNHvC1gAbvPKdqzHgbLl4WHfgqFT8uH vKhOOOBYDz7PdkCfHY+8Pj12dHS55+ncMdW/LsHs=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589f119f79caf_44873fb40a18f13418068a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/zhFTLmlh410LiXrWkxcIaJO4GXY>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1881.1486819747.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Feb 2017 13:29:06 -0000

----==_mimepart_589f119f79caf_44873fb40a18f13418068a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The more hints the more entropy. If an origin can place Accept-CH they can use that to single-out the user without their knowledge, unless opt-in is required. 
How could entropy be reduced? Can it be quantified?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279143807
----==_mimepart_589f119f79caf_44873fb40a18f13418068a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>The more hints the more entropy. If an origin can place Accept-CH they=
 can use that to single-out the user without their knowledge, unless opt-=
in is required.<br>
How could entropy be reduced? Can it be quantified?</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-279143807">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
PuVGH6BF7-MSmDecZt4jfcD3pprks5rbbefgaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyA18YySmLAnEUZfrVfQVJiJokNizks5rbbefgaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-279143807"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
ichael-oneill in #284: The more hints the more entropy. If an origin can =
place Accept-CH they can use that to single-out the user without their kn=
owledge, unless opt-in is required. \r\nHow could entropy be reduced? Can=
 it be quantified?"}],"action":{"name":"View Issue","url":"https://github=
.com/httpwg/http-extensions/issues/284#issuecomment-279143807"}}}</script=
>=

----==_mimepart_589f119f79caf_44873fb40a18f13418068a--


From nobody Sat Feb 11 07:20:12 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.982
X-Spam-Level: 
X-Spam-Status: No, score=-6.982 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sat, 11 Feb 2017 07:20:07 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486826407; bh=EA00nwEjvAIrwkbEPr3pPNkYAWUKtvHu//5IXvyynj4=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FrQAJCPBqJjpdUVfyC6oLBvoASmdyXRAE5QLeQ4rMei7lsTuCyvRkmwFW2UKlJvyb kMWnK53EIxfiDYHBbNeNMtneGuM5FfRSlgkbbEdZcGs7Xt3Db6PAOx23ayrYOZeP8K 4iQkYz4x/N2vdaonawJ7MTRy+llDMpuuBo300gOs=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_589f2ba76549b_457c3fe1d4f8b13c8703c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/He8R6PkXNiaq54BnBFLZFu7m5zI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.1892.1486826411.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 11 Feb 2017 15:20:11 -0000

----==_mimepart_589f2ba76549b_457c3fe1d4f8b13c8703c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@michael-oneill I think we may be talking past each other here. Everything you describe is already possible within the provided text in the draft - e.g. if you're building a browser you can provide necessary opt-in's and all the rest; if you're building an app you can prompt the user to accept terms of service on install, and so on. How the various implementations chose to surface this is up to them; we're not in a position to enforce anything here.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279151499
----==_mimepart_589f2ba76549b_457c3fe1d4f8b13c8703c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><a href=3D"https://github.com/michael-oneill" class=3D"user-mention">@=
michael-oneill</a> I think we may be talking past each other here. Everyt=
hing you describe is already possible within the provided text in the dra=
ft - e.g. if you're building a browser you can provide necessary opt-in's=
 and all the rest; if you're building an app you can prompt the user to a=
ccept terms of service on install, and so on. How the various implementat=
ions chose to surface this is up to them; we're not in a position to enfo=
rce anything here.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-279151499">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
JHoeQatIOIPPK1Hi0lnFK-Ol8pSks5rbdGngaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyCSUkvVoc6VP4LuCyintD_-UhmoNks5rbdGngaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-279151499"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@i=
grigorik in #284: @michael-oneill I think we may be talking past each oth=
er here. Everything you describe is already possible within the provided =
text in the draft - e.g. if you're building a browser you can provide nec=
essary opt-in's and all the rest; if you're building an app you can promp=
t the user to accept terms of service on install, and so on. How the vari=
ous implementations chose to surface this is up to them; we're not in a p=
osition to enforce anything here."}],"action":{"name":"View Issue","url":=
"https://github.com/httpwg/http-extensions/issues/284#issuecomment-279151=
499"}}}</script>=

----==_mimepart_589f2ba76549b_457c3fe1d4f8b13c8703c--


From nobody Sun Feb 12 15:31:49 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.403
X-Spam-Level: 
X-Spam-Status: No, score=-0.403 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=8gImI7dWQ1ExE8e0wRThV69QZfk=; b=BvVqU1XWYNyawLtX qLvqVA5gCSjtFAyy/on+SJiJaHRALdLBJOndJyhuEin4n49rYBlm3Dr+1Kn7U06x A1sByUPFR7aGhbIZXluzJmDJVaIb3QyVHutLhwzOJwDz2flXEj1rf35k6i0+nB8C Xzc/LMCq/nz+Gb6KhunYWr1R2Xg=
Date: Sun, 12 Feb 2017 15:31:44 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/283@github.com>
References: <httpwg/http-extensions/pull/283@github.com>
Subject: Re: [httpwg/http-extensions] Move to using padding that is more like TLS (#283)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a0f06043a37_2d253fc58fc21138847cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/GLPrbSJmZmZdZUE_eCVWOxPaxYg>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2008.1486942308.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 12 Feb 2017 23:31:47 -0000

----==_mimepart_58a0f06043a37_2d253fc58fc21138847cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #283.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/283#event-958848482
----==_mimepart_58a0f06043a37_2d253fc58fc21138847cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/283" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/283" data-id="203927386" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#283</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/283#event-958848482">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyBF37NiykkaTHalhpKNUnBPty_e2ks5rb5ZggaJpZM4LxC33">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKnjMczdpqSdEvdlqVm0Ss-c3t1Lks5rb5ZggaJpZM4LxC33.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/283#event-958848482"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #283."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/283#event-958848482"}}}</script>
----==_mimepart_58a0f06043a37_2d253fc58fc21138847cd--


From nobody Sun Feb 12 17:15:36 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.886
X-Spam-Level: 
X-Spam-Status: No, score=-8.886 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 12 Feb 2017 17:15:22 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486948522; bh=2VLzwTUU1i8xq3DOYPb2qeilS6R8YrIzZaMy4PlvNPM=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QVO4P/VuOcouZFPMokXxPVhjDQFULrjYPAsyqb3SKXVF2Y8Fx02hfom7siyn1wjoo goMH2ymX+DlA3WiqYNaDSRkIb0FgbzgBYsCx6sKp5jSb3+O7fEMSSZ+gYxiNOdRbmQ 7FoAa1gqV7QpcY2blJVZZI27UijLgL8A6lTygHSk=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a108aa42119_40ee3fb7f3e411386470"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Oo4Db4JA1VDxcePBx9veznJnxI0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2027.1486948535.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 01:15:34 -0000

----==_mimepart_58a108aa42119_40ee3fb7f3e411386470
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igrigorik I recognize that Client Hints could be used by HTTP implementations that aren't a browser being used by a user. It seems like in most (or all?) of those suggested cases, a developer controls the server and the client and sending `Accept-CH` wouldn't be a challenge. (That said, it might be that this could be a SHOULD, or a requirement that explicitly describes the situations where it doesn't need to be followed.)

While the current language provides flexibility to the client implementation, I think there are interoperability reasons to specify conditions that support user privacy here. Providing the expectation in the spec that the server receives Client Hints only if it has asked for them means that developers won't have to check UA implementations individually to try to figure out how to receive hints and UA implementers will have a common required condition which will benefit all users' privacy in providing for more detectability.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279272786
----==_mimepart_58a108aa42119_40ee3fb7f3e411386470
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><a href=3D"https://github.com/igrigorik" class=3D"user-mention">@igrig=
orik</a> I recognize that Client Hints could be used by HTTP implementati=
ons that aren't a browser being used by a user. It seems like in most (or=
 all?) of those suggested cases, a developer controls the server and the =
client and sending <code>Accept-CH</code> wouldn't be a challenge. (That =
said, it might be that this could be a SHOULD, or a requirement that expl=
icitly describes the situations where it doesn't need to be followed.)</p=
>
<p>While the current language provides flexibility to the client implemen=
tation, I think there are interoperability reasons to specify conditions =
that support user privacy here. Providing the expectation in the spec tha=
t the server receives Client Hints only if it has asked for them means th=
at developers won't have to check UA implementations individually to try =
to figure out how to receive hints and UA implementers will have a common=
 required condition which will benefit all users' privacy in providing fo=
r more detectability.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-279272786">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
HIoZhBfwIByYuhJ-4zhCIxpPh8tks5rb66qgaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyCwNBaBWc4j8yJd6BU0n4Dl9UaNgks5rb66qgaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-279272786"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@n=
pdoty in #284: @igrigorik I recognize that Client Hints could be used by =
HTTP implementations that aren't a browser being used by a user. It seems=
 like in most (or all?) of those suggested cases, a developer controls th=
e server and the client and sending `Accept-CH` wouldn't be a challenge. =
(That said, it might be that this could be a SHOULD, or a requirement tha=
t explicitly describes the situations where it doesn't need to be followe=
d.)\r\n\r\nWhile the current language provides flexibility to the client =
implementation, I think there are interoperability reasons to specify con=
ditions that support user privacy here. Providing the expectation in the =
spec that the server receives Client Hints only if it has asked for them =
means that developers won't have to check UA implementations individually=
 to try to figure out how to receive hints and UA implementers will have =
a common required condition which will benefit all users' privacy in prov=
iding for more detectability."}],"action":{"name":"View Issue","url":"htt=
ps://github.com/httpwg/http-extensions/issues/284#issuecomment-279272786"=
}}}</script>=

----==_mimepart_58a108aa42119_40ee3fb7f3e411386470--


From nobody Sun Feb 12 17:23:38 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.886
X-Spam-Level: 
X-Spam-Status: No, score=-8.886 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 12 Feb 2017 17:23:33 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486949013; bh=6M4hFw/lNSYd95+2j7FgpzkpadHyG+g94J2eSdtteHM=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WdA+G0VJhtJBcOpJWK7IUrHAFyHkVfj5RIRLVi9n10WZsxHVLXPv3aMaQB7Mlp3mZ IxrHv2/vQqxxFld3ZBujgmzpFNZozFj51FNu4JcgSdnAMhLLlrp6L3Vdn4G7bRmmyc 0KdOXjuWJWlrmQphcgEqPqiHL9sNdjaZj7pscYB4=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a10a955f598_41b3fae7ad27130103155"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/eVHzZEDrbOcL0kEF910t7eRZcOA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2028.1486949017.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 01:23:36 -0000

----==_mimepart_58a10a955f598_41b3fae7ad27130103155
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@yoavweiss that User-Agent strings have, in some recent mobile implementations, increased their entropy and revealed more about the specific hardware isn't necessarily a good thing or something we should accept and duplicate in actual standards. The browser on the laptop I'm using right now doesn't reveal the specific model of MacBook that I'm using, or the size or density of its screen in the `User-Agent` or other HTTP headers. 

I agree that looking up info in device databases based on browser sniffing is not the ideal case; I don't think that means we should increase the presence of explicit device info in all HTTP requests. `Accept-CH` would be a data minimization method more similar to existing JavaScript implementations; sites that need the information can ask for it and ask for it in a way that's visible.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-279273517
----==_mimepart_58a10a955f598_41b3fae7ad27130103155
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p><a href=3D"https://github.com/yoavweiss" class=3D"user-mention">@yoavw=
eiss</a> that User-Agent strings have, in some recent mobile implementati=
ons, increased their entropy and revealed more about the specific hardwar=
e isn't necessarily a good thing or something we should accept and duplic=
ate in actual standards. The browser on the laptop I'm using right now do=
esn't reveal the specific model of MacBook that I'm using, or the size or=
 density of its screen in the <code>User-Agent</code> or other HTTP heade=
rs.</p>
<p>I agree that looking up info in device databases based on browser snif=
fing is not the ideal case; I don't think that means we should increase t=
he presence of explicit device info in all HTTP requests. <code>Accept-CH=
</code> would be a data minimization method more similar to existing Java=
Script implementations; sites that need the information can ask for it an=
d ask for it in a way that's visible.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-279273517">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
Di6k6RfBJRVNx6E2Rg5BglM6a3oks5rb7CVgaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyLo--rhetjRhHBMQ9wT20RXlgs2cks5rb7CVgaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-279273517"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@n=
pdoty in #284: @yoavweiss that User-Agent strings have, in some recent mo=
bile implementations, increased their entropy and revealed more about the=
 specific hardware isn't necessarily a good thing or something we should =
accept and duplicate in actual standards. The browser on the laptop I'm u=
sing right now doesn't reveal the specific model of MacBook that I'm usin=
g, or the size or density of its screen in the `User-Agent` or other HTTP=
 headers. \r\n\r\nI agree that looking up info in device databases based =
on browser sniffing is not the ideal case; I don't think that means we sh=
ould increase the presence of explicit device info in all HTTP requests. =
`Accept-CH` would be a data minimization method more similar to existing =
JavaScript implementations; sites that need the information can ask for i=
t and ask for it in a way that's visible."}],"action":{"name":"View Issue=
","url":"https://github.com/httpwg/http-extensions/issues/284#issuecommen=
t-279273517"}}}</script>=

----==_mimepart_58a10a955f598_41b3fae7ad27130103155--


From nobody Sun Feb 12 21:20:25 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=n9htczpSYQNJw+XFn9Pspv2xJsI=; b=jXDOdXH/UmNhg+IS asQ+cOSpl48uxZaAKKEjXcJVW1zH77lCfGI4amgfAxzP2Xn3ZgG68xjgg7DL4OZ9 fn9csyjosjDXEG68bQ804WrAQTibuJNyGArT56OaiIk4QTHeGiMuU11xSxzSLx6b MS6bF0EyQ8wYGjbt9lRnp/AmM+0=
Date: Sun, 12 Feb 2017 21:20:21 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a14215a76ed_1a13fedd86f713c2048b4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/RFz_4PfzXrzeql2f5NHADQTJ830>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.2043.1486963225.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 05:20:25 -0000

----==_mimepart_58a14215a76ed_1a13fedd86f713c2048b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot pushed 1 commit.

e2083ad  Note interaction with Alt-Svc.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/285/files/6b3b76186c3eecbeace6bbd7bbbb8a040b502006..e2083ad3938f7f335ef4051ce5edfb03259fdcd7

----==_mimepart_58a14215a76ed_1a13fedd86f713c2048b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/e2083ad" class="commit-link">e2083ad</a>  Note interaction with Alt-Svc.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/285/files/6b3b76186c3eecbeace6bbd7bbbb8a040b502006..e2083ad3938f7f335ef4051ce5edfb03259fdcd7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyNP1CHDpmc-cBU8TuhQ-cZPNcWMZks5rb-gVgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDPqO6MpT3_bqlFK6baVO6aAmZ8_ks5rb-gVgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285/files/6b3b76186c3eecbeace6bbd7bbbb8a040b502006..e2083ad3938f7f335ef4051ce5edfb03259fdcd7"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot pushed 1 commit in #285"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285/files/6b3b76186c3eecbeace6bbd7bbbb8a040b502006..e2083ad3938f7f335ef4051ce5edfb03259fdcd7"}}}</script>

----==_mimepart_58a14215a76ed_1a13fedd86f713c2048b4--


From nobody Sun Feb 12 21:25:29 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.268
X-Spam-Level: 
X-Spam-Status: No, score=-7.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 12 Feb 2017 21:25:24 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486963524; bh=cCr0mg6lT7yrxZ0tdzJzLrRlEpCUbp5ooM8gUh9mpcU=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B0g40ADwomzyRg5NegYBamB+JG/VCJ1W4jejyTK+C0SpULsin6g+Vr9ZuVhZD3FhX K7jKz2lywVvs+OJIHhzLjqysORxvSN2pqv21N3y372zMlDI+y75chKbrvBplvp61tQ ip5YJq8q4ywgc1ABLOoBfP08Ilc3xciGW9aSve/U=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/285@github.com>
References: <httpwg/http-extensions/pull/285@github.com>
Subject: Re: [httpwg/http-extensions] DNS relaxation, smaller initial Origin Set (#285)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a143448c09f_5d193fb7f3e4113886549"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/ZPLYKSlCyBT4gogUzbJ_tp9bFBQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2044.1486963528.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 05:25:27 -0000

----==_mimepart_58a143448c09f_5d193fb7f3e4113886549
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #285.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/285#event-959037297
----==_mimepart_58a143448c09f_5d193fb7f3e4113886549
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/285" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/285" data-id="204508554" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#285</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/285#event-959037297">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMIvYILNbHLSySeFjttQ8H0l1b45ks5rb-lEgaJpZM4LzieL">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyIYU_0QUbg0yvIkhPkxu6bgx0Zxuks5rb-lEgaJpZM4LzieL.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/285#event-959037297"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #285."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/285#event-959037297"}}}</script>
----==_mimepart_58a143448c09f_5d193fb7f3e4113886549--


From nobody Sun Feb 12 21:48:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=dz6JDFid3fQoRh23tYuX/3O6oOA=; b=YCG+PjbuMDSsC6Ba 3Fmfrpdxiyr8greW3Mvp8mVt0LPd+9ij1iOuiEkpVLFhKIy7OFMCfFv8umdaokW3 eaxEgSuy1Qz5wWISJYb017RpMrxLLAVrAC/GoXZbW1XEimQ7Vr/8fpSxm9h1f1Sf CTxQqEXXFAQJiReyBgOkHhQKmas=
Date: Sun, 12 Feb 2017 21:48:20 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7@github.com>
References: <httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7@github.com>
Subject: Re: [httpwg/http-extensions] Note interaction with Alt-Svc. (e2083ad)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a148a42a2b1_19403fb7f3e411382819b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/3pMM7zQiCtiykXqTK61ORLx0f4o>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2045.1486964903.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 05:48:23 -0000

----==_mimepart_58a148a42a2b1_19403fb7f3e411382819b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The server will include the SNI still, it's just that the SNI might not include the name for which the client is actually connecting.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7#commitcomment-20854645
----==_mimepart_58a148a42a2b1_19403fb7f3e411382819b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The server will include the SNI still, it's just that the SNI might not include the name for which the client is actually connecting.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7#commitcomment-20854645">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyOunVrPYhG_rcYfJLTI79KncZ7MCks5rb-6kgaJpZM4L-0Sv">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyF7VIsfQy1H1XBLvRWSxo-vQdAOlks5rb-6kgaJpZM4L-0Sv.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7#commitcomment-20854645"></link>
  <meta itemprop="name" content="View Commit"></meta>
</div>
<meta itemprop="description" content="View this Commit on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson on e2083ad: The server will include the SNI still, it's just that the SNI might not include the name for which the client is actually connecting."}],"action":{"name":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/e2083ad3938f7f335ef4051ce5edfb03259fdcd7#commitcomment-20854645"}}}</script>
----==_mimepart_58a148a42a2b1_19403fb7f3e411382819b7--


From nobody Mon Feb 13 03:47:01 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Z6RY5W7WAw99ocbi6F6E/Sq+cpE=; b=Sv65shJLeFlYgYSR GybpOT4U+1gWlroGBbhmLBoMN9tm+/Er3JSJLxyuGOomk2tXOiq7XJkf70X9e6zi uXdcsTs2AgwdTQKgRnWzVUITZEu4OGLQc6MEp2KxTJpnHOjUQ5QHj/yaNQoLx9c4 cLwyoMuAijAXT1mX4Gz4dZI+L+g=
Date: Mon, 13 Feb 2017 03:46:53 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] clarify round-tripping of double quotes around cookie value (#295)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a19cad3ddb1_5da63f90a084513c291287"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/pgefJoY5hBeXohmCp96IhdVzCCg>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2071.1486986420.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 11:47:00 -0000

----==_mimepart_58a19cad3ddb1_5da63f90a084513c291287
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

See discussion in <https://issues.apache.org/jira/browse/HTTPCLIENT-1006> -- I believe the spec needs to be clearer about this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/295
----==_mimepart_58a19cad3ddb1_5da63f90a084513c291287
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>See discussion in <a href="https://issues.apache.org/jira/browse/HTTPCLIENT-1006">https://issues.apache.org/jira/browse/HTTPCLIENT-1006</a> -- I believe the spec needs to be clearer about this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/295">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyLD2-7IwCBwCSzUrZw43f-KaHMiEks5rcEKtgaJpZM4L_Gtd">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGKj-IYJ0kibQvVzqyzcUubYMsgyks5rcEKtgaJpZM4L_Gtd.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/295"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"clarify round-tripping of double quotes around cookie value (#295)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/295"}}}</script>
----==_mimepart_58a19cad3ddb1_5da63f90a084513c291287--


From nobody Mon Feb 13 06:49:10 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.482
X-Spam-Level: 
X-Spam-Status: No, score=-7.482 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Mon, 13 Feb 2017 06:49:06 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1486997346; bh=Gi1aFZDlGbTDa+ismdvPP0AwCBbWZ5AJtOXDtiQA/V4=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=h9pUGfqO5DAsKKnL9sIX8LbuAlFiUgahFXWZg1ACOC9datFke8nGgUqMo4zEHigTS mH5+OI+/WvJ3GrxQR8qcFhnf7WuzR55Kg+69Hzqnu1SJDGP6NFn5vAm+Qs0VO4AeqM 0vJ1mKSmXq1la6ey4oxmmIxwpDKwyImwgjMV68t4=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] incorrect content length in example (#296)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a1c762308a3_30273f9f7f48d13c2011c1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/9tmBCd-kpHmLAmvRM38yaJQoEGk>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2094.1486997350.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 14:49:09 -0000

----==_mimepart_58a1c762308a3_30273f9f7f48d13c2011c1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

header = 16 +4 + 1 +2 = 23
two records of 25 bytes = 50

sum is 73
You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/296

-- Commit Summary --

  * incorrect content length in example

-- File Changes --

    M draft-ietf-httpbis-encryption-encoding.md (2)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/296.patch
https://github.com/httpwg/http-extensions/pull/296.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/296

----==_mimepart_58a1c762308a3_30273f9f7f48d13c2011c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>header = 16 +4 + 1 +2 = 23<br>
two records of 25 bytes = 50</p>
<p>sum is 73</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/296'>https://github.com/httpwg/http-extensions/pull/296</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>incorrect content length in example</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/296/files#diff-0">draft-ietf-httpbis-encryption-encoding.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/296.patch'>https://github.com/httpwg/http-extensions/pull/296.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/296.diff'>https://github.com/httpwg/http-extensions/pull/296.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/296">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyI2Qp5EgRQyPgpVEgkjL0wKi1LFzks5rcG1igaJpZM4L_SjP">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyHA5NVGJERvtRTVrgAiDbvm-N1NZks5rcG1igaJpZM4L_SjP.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/296"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"incorrect content length in example (#296)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/296"}}}</script>

----==_mimepart_58a1c762308a3_30273f9f7f48d13c2011c1--


From nobody Mon Feb 13 12:58:05 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=V05JdSkeJTfuxd29o9xXebxtb7s=; b=ps3J8Is6KkW1wUJt a4c1LyFCnf961HLA2+RXYhRmX+3nmUp7ZKz05OICI8hY7navQKHZ0Hp+2bzJ2YSA Z+87GEuA3Y9F7rapSlglKT/V+Voy2pahMFqf+sntaVZ18Pk1nDNA3tIiienWN+kj UEAbYzM3BVsiqNj7aMur9nNPxZY=
Date: Mon, 13 Feb 2017 12:57:59 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/273@github.com>
References: <httpwg/http-extensions/pull/273@github.com>
Subject: Re: [httpwg/http-extensions] Remove Crypto-Key header field (#273)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a21dd785232_239a3fb5a435b1347067e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/I5PdRjwTFr8LvKZSi5efKXXpuFQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2194.1487019484.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 20:58:04 -0000

----==_mimepart_58a21dd785232_239a3fb5a435b1347067e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson Late to the party, but...for Web Push, am I understanding correctly that this is now included in the ECE header (idlen = 65, keyid = sender public key)?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/273#issuecomment-279519924
----==_mimepart_58a21dd785232_239a3fb5a435b1347067e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> Late to the party, but...for Web Push, am I understanding correctly that this is now included in the ECE header (idlen = 65, keyid = sender public key)?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/273#issuecomment-279519924">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyND52ujI00E8VIBLBSxYrSRJw__Oks5rcMPXgaJpZM4K3y7N">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyJhYYQMp7vgr8ywdbji6bESXJ_f2ks5rcMPXgaJpZM4K3y7N.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/273#issuecomment-279519924"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@kitcambridge in #273: @martinthomson Late to the party, but...for Web Push, am I understanding correctly that this is now included in the ECE header (idlen = 65, keyid = sender public key)?"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/273#issuecomment-279519924"}}}</script>
----==_mimepart_58a21dd785232_239a3fb5a435b1347067e--


From nobody Mon Feb 13 14:43:54 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.174
X-Spam-Level: 
X-Spam-Status: No, score=-1.174 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=jYnO7ZwDMIrYGabSKbAeKKqlg9w=; b=lveSC85SkqDMOKz7 OFJrBPCs/l4oko6oJ6jwq3iGFSBaRXOiGRNAlNiKHSjvZPNsq8AgRT64HtSvszWB SmbKwcod77XfwcWH9XNUSoPzkCswePe92snnMJ5kqs3AUp1ANm0TM+Tk8TdZshC9 NCeufd2tWa6fokUak8nZTbK2Cko=
Date: Mon, 13 Feb 2017 14:43:46 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/273@github.com>
References: <httpwg/http-extensions/pull/273@github.com>
Subject: Re: [httpwg/http-extensions] Remove Crypto-Key header field (#273)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a236a236489_74513fbc8287f1302082cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/nlHP8iLQZKDlVunLLyg7_25qCvY>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2241.1487025834.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 22:43:54 -0000

----==_mimepart_58a236a236489_74513fbc8287f1302082cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kitcambridge yep, that's it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/273#issuecomment-279547960
----==_mimepart_58a236a236489_74513fbc8287f1302082cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/kitcambridge" class="user-mention">@kitcambridge</a> yep, that's it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/273#issuecomment-279547960">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHEJX57stoPkO4rS3O__kXBBnvCIks5rcNyigaJpZM4K3y7N">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyFXymiXumE8mZNrkwjIj-IrRDRxTks5rcNyigaJpZM4K3y7N.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/273#issuecomment-279547960"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson in #273: @kitcambridge yep, that's it."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/273#issuecomment-279547960"}}}</script>
----==_mimepart_58a236a236489_74513fbc8287f1302082cd--


From nobody Mon Feb 13 14:44:20 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=BZniJoEFtqnNC3cc6yishi/pnbs=; b=Bhty+KwhhIyNCKVf IkyEQJq2306zLETJWGIgPPO2o+uIln7cjXDZKI7aY0ajnd7TOVlj8T/j3sM1R3TE 1wUByT9NQqVNEqGTshRgGgzvBXzr/UvMDhQxo27cTsUuNzLlCRwCwsNo0oHuc/Aj rlrHYp40DrPQMaQkEJ2CD8XfczY=
Date: Mon, 13 Feb 2017 14:44:12 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/296@github.com>
References: <httpwg/http-extensions/pull/296@github.com>
Subject: Re: [httpwg/http-extensions] incorrect content length in example (#296)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a236bcceb8d_a533fc7c331313c2430f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/wH-Hq5v45RBX4Gki5yJhtkK9dLI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2242.1487025859.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 13 Feb 2017 22:44:19 -0000

----==_mimepart_58a236bcceb8d_a533fc7c331313c2430f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #296.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/296#event-960472184
----==_mimepart_58a236bcceb8d_a533fc7c331313c2430f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/296" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/296" data-id="207238775" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#296</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/296#event-960472184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDQQhjrsZwQLRd5vnU-a9zC6wCHzks5rcNy8gaJpZM4L_SjP">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBLcHKtsZNc4dHCobs5kA5J_fg10ks5rcNy8gaJpZM4L_SjP.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/296#event-960472184"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #296."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/296#event-960472184"}}}</script>
----==_mimepart_58a236bcceb8d_a533fc7c331313c2430f1--


From nobody Wed Feb 15 15:29:47 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.482
X-Spam-Level: 
X-Spam-Status: No, score=-7.482 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Wed, 15 Feb 2017 15:29:42 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487201382; bh=riSITjvmmbLQgCRUVFCw8YGRH17Z2DuhQNYYfjwDbhU=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=F+1/da3JZsPweqMgAx9XNUgGjlwhw6jAqqLLQYSFZiEOJj56g/Rqx3Llg3hSkXM2E jcM9DVuJpr/1TEzYNTvguHoIPUT2pwhX5vMuVBOrFaVgkt6deIAPPq3MdRCsp8nI8T 1N05JE+EEAmCFJS7GQ5jOS8VgvtFL8uizMshR7DA=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Updated Opp-Sec writeup (#297)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a4e46675bd3_78a73f969d19d13813015f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/hbeaa6JXzDGIHU7WSMgSh3yXnic>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2860.1487201386.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 15 Feb 2017 23:29:45 -0000

----==_mimepart_58a4e46675bd3_78a73f969d19d13813015f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For git tracking purposes, even though I'm uploading directly to Datatracker as well.
You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/297

-- Commit Summary --

  * Updated Opp-Sec writeup

-- File Changes --

    M writeups/opp-sec.md (104)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/297.patch
https://github.com/httpwg/http-extensions/pull/297.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/297

----==_mimepart_58a4e46675bd3_78a73f969d19d13813015f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>For git tracking purposes, even though I'm uploading directly to Datatracker as well.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/297'>https://github.com/httpwg/http-extensions/pull/297</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Updated Opp-Sec writeup</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/297/files#diff-0">writeups/opp-sec.md</a>
    (104)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/297.patch'>https://github.com/httpwg/http-extensions/pull/297.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/297.diff'>https://github.com/httpwg/http-extensions/pull/297.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/297">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyAKdVpNPibrL0wPotI0JqCxfkWVlks5rc4pmgaJpZM4MCYyk">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLPrqaI8KEsnyVq98wsdDQj_p4kYks5rc4pmgaJpZM4MCYyk.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/297"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Updated Opp-Sec writeup (#297)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/297"}}}</script>

----==_mimepart_58a4e46675bd3_78a73f969d19d13813015f--


From nobody Wed Feb 15 16:11:42 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.186
X-Spam-Level: 
X-Spam-Status: No, score=-6.186 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=vKSZpyOqoPshM+uSSw+FHRyawC0=; b=aVN9Cy8LX9EHDWDC jn5e/tVvacmmb4Qi02gLg7bsgotgR4QCthgSNJp2e9VtIBhxATDmzOb7RE0dJex4 ejaUosXVRoULucmt8+dURc3TQiUmNyeH5EhFsz55VRfHzoNarD+U9xF/6Mjhg7PA +3p1slGUqcc2CEZPtIYffE1rVVA=
Date: Wed, 15 Feb 2017 16:11:37 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/297@github.com>
References: <httpwg/http-extensions/pull/297@github.com>
Subject: Re: [httpwg/http-extensions] Updated Opp-Sec writeup (#297)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a4ee391e19_c493f997abad134359dd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/ccxU-tgt4xcklpC3BMiO15wthK0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.2881.1487203901.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 16 Feb 2017 00:11:41 -0000

----==_mimepart_58a4ee391e19_c493f997abad134359dd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> +
+RFC 7838 requires "reasonable assurances" that the alternative was under the
+control of the same authority as the origin. RFC 7838 defines only one means of
+having such assurance: possession of a TLS certificate for the origin. After
+much discussion, this draft maintains that definition and requires the use of
+fully verified certificates.
+
+The other item of particular concern around using RFC7838 with http:// URIs was
+server support for receiving requests for http:// schemed resources on ports
+configured to use TLS. While HTTP/1.1 might permit and HTTP/2 mandates the
+inclusion of the URL scheme with the request, it appears that almost no server
+implementations treat the included scheme as more authoritative than the port on
+which it was received. This is noted in section 4.4. As a result, the final
+version of this document prohibits the use of HTTP/1.1 and uses the .well-known
+resource as a server's self-certification that it can correctly distinguish such
+requests.

You might also note the added prohibition on "coalescing".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/297#pullrequestreview-22145044
----==_mimepart_58a4ee391e19_c493f997abad134359dd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/297#discussion_r101416996">writeups/opp-sec.md</a>:</p>
<pre style='color:#555'>&gt; +
+RFC 7838 requires &quot;reasonable assurances&quot; that the alternative was under the
+control of the same authority as the origin. RFC 7838 defines only one means of
+having such assurance: possession of a TLS certificate for the origin. After
+much discussion, this draft maintains that definition and requires the use of
+fully verified certificates.
+
+The other item of particular concern around using RFC7838 with http:// URIs was
+server support for receiving requests for http:// schemed resources on ports
+configured to use TLS. While HTTP/1.1 might permit and HTTP/2 mandates the
+inclusion of the URL scheme with the request, it appears that almost no server
+implementations treat the included scheme as more authoritative than the port on
+which it was received. This is noted in section 4.4. As a result, the final
+version of this document prohibits the use of HTTP/1.1 and uses the .well-known
+resource as a server&#39;s self-certification that it can correctly distinguish such
+requests.
</pre>
<p>You might also note the added prohibition on "coalescing".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/297#pullrequestreview-22145044">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPzgdzuMpndTMVtz1GOOYkSU-26Tks5rc5Q5gaJpZM4MCYyk">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyIEyxvd3T-sHMkC823g8D_fjeMmfks5rc5Q5gaJpZM4MCYyk.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/297#pullrequestreview-22145044"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson commented on #297"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/297#pullrequestreview-22145044"}}}</script>
----==_mimepart_58a4ee391e19_c493f997abad134359dd--


From nobody Sun Feb 19 10:17:41 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.482
X-Spam-Level: 
X-Spam-Status: No, score=-7.482 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 19 Feb 2017 10:17:35 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487528255; bh=UIIhstECk1y2WR9ABitRUP8Hz037UNKYvii9JVHAAF0=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=aRE9v6px46f1DLrM0rRG4mATO8ENyMrMYARMbMXXRlj9HwQ1/AYaEouXIApN1wRPj sn67n74l4SpIwT+rR5ith97iYbonx8xU2a2knkeUnglq4OB0XbXIvV776C7xv96lpF bjjx1ZiUhaUwo1whnZwW83ihdQ7S9KFgUTb2cwcs=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] align the descriptions (#298)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a9e13fb9d93_6c33fb21949313427812"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/iQ7XIfIClOHW3u4MJ7nk9Y1W3CM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3603.1487528260.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 18:17:39 -0000

----==_mimepart_58a9e13fb9d93_6c33fb21949313427812
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/298

-- Commit Summary --

  * align the descriptions

-- File Changes --

    M draft-ietf-httpbis-encryption-encoding.md (10)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/298.patch
https://github.com/httpwg/http-extensions/pull/298.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/298

----==_mimepart_58a9e13fb9d93_6c33fb21949313427812
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/298'>https://github.com/httpwg/http-extensions/pull/298</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>align the descriptions</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/298/files#diff-0">draft-ietf-httpbis-encryption-encoding.md</a>
    (10)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/298.patch'>https://github.com/httpwg/http-extensions/pull/298.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/298.diff'>https://github.com/httpwg/http-extensions/pull/298.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/298">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIF4qsD0MVmt5Zc2IkwBDPEvYT5Tks5reIc_gaJpZM4MFiog">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGEPqlltMTUlC-mkmaNJSSbK74yKks5reIc_gaJpZM4MFiog.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/298"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"align the descriptions (#298)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/298"}}}</script>

----==_mimepart_58a9e13fb9d93_6c33fb21949313427812--


From nobody Sun Feb 19 10:33:50 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.482
X-Spam-Level: 
X-Spam-Status: No, score=-7.482 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 19 Feb 2017 10:33:46 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487529226; bh=NA2uEhRsVSo6qHCX60z+EvuKQFc5SVDglspHpkEDGJk=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ax1iGML/sDsVGBewVSSnZpkLJY0PuMIRbbbRbVqhAB3APO9QL1Jore4HSbKkMptDY UuKPoVDZV/n0DQ/nk3aivlG7EKWPVU04OxYrxnGshjVRFAfQCDv0gfpFbDrhmNfW/k GM5SUcEsvlSszrjTyEuse7Kp0wl9iqrZVeUd7vXo=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] update FIPS180-4 reference (#299)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a9e50a9b347_701c3ff8bd1b5134551ec"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/Hc2h8pJLy7Y5jYt4DWoGjkTIapk>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3604.1487529229.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 18:33:49 -0000

----==_mimepart_58a9e50a9b347_701c3ff8bd1b5134551ec
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/299

-- Commit Summary --

  * update FIPS180-4 reference

-- File Changes --

    M draft-ietf-httpbis-encryption-encoding.md (5)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/299.patch
https://github.com/httpwg/http-extensions/pull/299.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/299

----==_mimepart_58a9e50a9b347_701c3ff8bd1b5134551ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/299'>https://github.com/httpwg/http-extensions/pull/299</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>update FIPS180-4 reference</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/299/files#diff-0">draft-ietf-httpbis-encryption-encoding.md</a>
    (5)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/299.patch'>https://github.com/httpwg/http-extensions/pull/299.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/299.diff'>https://github.com/httpwg/http-extensions/pull/299.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/299">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyOluF_JeR5Cr5DfigS8ehA_FNlhhks5reIsKgaJpZM4MFi-a">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLfFfdPhHeIBOjj5_CIqk-Ip60Eiks5reIsKgaJpZM4MFi-a.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/299"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"update FIPS180-4 reference (#299)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/299"}}}</script>

----==_mimepart_58a9e50a9b347_701c3ff8bd1b5134551ec--


From nobody Sun Feb 19 10:43:23 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=bEiDPIczQuDB8NcnEM4HJp7HwMM=; b=HrVxYOzVBXvebXLB nB3JVHkp9J63FEgWJvEPJi2aac/Zv/g6gR+6IrgMSQHsXBACLX8d/qnyrND5PfEA NxuNSGYOtmEr/Wws28l0XVnpgDFEZlJcm+42aYxvbZmf1KBKojBaV9JY9WC9Po2r J8bIZV0YMwQLOlgQC1anzDP80us=
Date: Sun, 19 Feb 2017 10:43:19 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6@github.com>
References: <httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6@github.com>
Subject: Re: [httpwg/http-extensions] Explain why aesgcm doesn't need a dummy parameter (6880580)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a9e747e8835_3ffa3f94887fb1408558a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/rUdIAg5ZEIHNLPXkNM_JAvZRXP0>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3605.1487529803.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 18:43:23 -0000

----==_mimepart_58a9e747e8835_3ffa3f94887fb1408558a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In XML, this yields:

\<seriesInfo name="W3C Recommendation REC-xmlenc-core1-20130411" value=""/>

Note the empty value; can this be fixed somehow?

cc: @martinthomson


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-20950582
----==_mimepart_58a9e747e8835_3ffa3f94887fb1408558a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>In XML, this yields:</p>
<p>&lt;seriesInfo name=3D"W3C Recommendation REC-xmlenc-core1-20130411" val=
ue=3D""/&gt;</p>
<p>Note the empty value; can this be fixed somehow?</p>
<p>cc: <a href=3D"https://github.com/martinthomson" class=3D"user-mention">=
@martinthomson</a></p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-=
20950582">view it on GitHub</a>, or <a href=3D"https://github.com/notificat=
ions/unsubscribe-auth/AORpyAmODE4iSuTGGiHJcZib3XINkBfdks5reI1HgaJpZM4MFjLe"=
>mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https://github.com/n=
otifications/beacon/AORpyP0F3ahXatREm3JHWwdtmpTj8C50ks5reI1HgaJpZM4MFjLe.gi=
f" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-20950582"></l=
ink>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></met=
a>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@reschke on 6880580:=
 In XML, this yields:\r\n\r\n\\\u003cseriesInfo name=3D\"W3C Recommendation=
 REC-xmlenc-core1-20130411\" value=3D\"\"/\u003e\r\n\r\nNote the empty valu=
e; can this be fixed somehow?\r\n\r\ncc: @martinthomson\r\n"}],"action":{"n=
ame":"View Commit","url":"https://github.com/httpwg/http-extensions/commit/=
68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-20950582"}}}</script>=

----==_mimepart_58a9e747e8835_3ffa3f94887fb1408558a--


From nobody Sun Feb 19 10:46:47 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.483
X-Spam-Level: 
X-Spam-Status: No, score=-2.483 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=5o583XZ6fNshue7HTfYyUgeTEs8=; b=QyWgyXHHu4oAu0Um kmZKRlgqT7oY0uNHT1DtikVt4tCsar3MtEsWGulAkm5n/zZvVFnCKDD137iegbf4 /rdYyUTtSKQNtWMggVw+/qZkFcJ8FutUGnuWtItPaMULmBO2lUlcoMoXW41KatoV Tg29yYCjdFlKMslgOFdV5JhryYk=
Date: Sun, 19 Feb 2017 10:46:40 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] fix series info for XMLENC (#300)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58a9e810b91c1_5e0f3fa90600d130689ef"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/qC7OQnRXDUhH0e7-E1dBvdfa4yA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3606.1487530006.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 18:46:46 -0000

----==_mimepart_58a9e810b91c1_5e0f3fa90600d130689ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/300

-- Commit Summary --

  * fix series info for XMLENC

-- File Changes --

    M draft-ietf-httpbis-encryption-encoding.md (3)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/300.patch
https://github.com/httpwg/http-extensions/pull/300.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/300

----==_mimepart_58a9e810b91c1_5e0f3fa90600d130689ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/300'>https://github.com/httpwg/http-extensions/pull/300</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>fix series info for XMLENC</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/300/files#diff-0">draft-ietf-httpbis-encryption-encoding.md</a>
    (3)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/300.patch'>https://github.com/httpwg/http-extensions/pull/300.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/300.diff'>https://github.com/httpwg/http-extensions/pull/300.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/300">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyLkHIjWb0dEQaZSVTmozk7ngkzOZks5reI4QgaJpZM4MFjPq">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyI3obpskQN8NuOMUp8gEYtmdaSJ7ks5reI4QgaJpZM4MFjPq.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/300"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"fix series info for XMLENC (#300)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/300"}}}</script>

----==_mimepart_58a9e810b91c1_5e0f3fa90600d130689ef--


From nobody Sun Feb 19 14:35:59 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.268
X-Spam-Level: 
X-Spam-Status: No, score=-7.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 19 Feb 2017 14:35:55 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487543755; bh=FyUwbURqn1Up+ZoFtwDIE+UAJUFf6FIs/6kwtuP8rN8=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lozdQ0SN3zevM/Su7wy4JSjOzOF+r07OfD5Ef/MAtGGq/z3RmyfROAUaSjwOG7F7N RnAuXitEOGUwjF38vPy2tzN1gpfXoEwBYM2yvDm2t4tvIm6b938pGG+ZpF+6FIXKyu KgGfM1YouzFzmI7F5+gIJtccbeURIS/PoHFm1TRY=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/298@github.com>
References: <httpwg/http-extensions/pull/298@github.com>
Subject: Re: [httpwg/http-extensions] align the descriptions (#298)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58aa1dcb8d1c_1cb3fab8660513c32039a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/FY-AVaWd8N2VV4pcfjq2d39-khI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3625.1487543758.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 22:35:58 -0000

----==_mimepart_58aa1dcb8d1c_1cb3fab8660513c32039a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #298.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/298#event-968473807
----==_mimepart_58aa1dcb8d1c_1cb3fab8660513c32039a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/298" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/298" data-id="208735030" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#298</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/298#event-968473807">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyEjb3ET-90zdszCs7blpLytKW26iks5reMPLgaJpZM4MFiog">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyDzX1X2BJZp99B5P5k84AjJa44Ycks5reMPLgaJpZM4MFiog.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/298#event-968473807"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #298."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/298#event-968473807"}}}</script>
----==_mimepart_58aa1dcb8d1c_1cb3fab8660513c32039a--


From nobody Sun Feb 19 14:36:18 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.102
X-Spam-Level: 
X-Spam-Status: No, score=-1.102 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=QI+oR+QnpmqNF30gT4pj7CrTwXY=; b=bJmH6aZ1F4ykkYrZ DoGbkItBoT9K3xp+zCGNulRZuyPE7Kz+aiTzobWczeCmX/9J0mVUkjailIJjedA1 Vw80lafaXVXgFIy8NbZ7ohbO6tLx2yBjzm0ephYmhb1t9nHLqrqM7tS/2gZB75iO KpR5Uq6oQWcDczKrVFy+xLygr+8=
Date: Sun, 19 Feb 2017 14:36:14 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/299@github.com>
References: <httpwg/http-extensions/pull/299@github.com>
Subject: Re: [httpwg/http-extensions] update FIPS180-4 reference (#299)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58aa1dde80a1c_d9c3fe3a4a331404208f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/3mEdpjcnvlrirSU2R3MqJfV3h98>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3626.1487543777.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 22:36:17 -0000

----==_mimepart_58aa1dde80a1c_d9c3fe3a4a331404208f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #299.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/299#event-968473925
----==_mimepart_58aa1dde80a1c_d9c3fe3a4a331404208f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/299" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/299" data-id="208736227" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#299</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/299#event-968473925">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDL1zzejX80MUM5BVIkFA_25ZxVaks5reMPegaJpZM4MFi-a">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMxr2nCqgOAPTfTe_bKo1vWWjQ0xks5reMPegaJpZM4MFi-a.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/299#event-968473925"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #299."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/299#event-968473925"}}}</script>
----==_mimepart_58aa1dde80a1c_d9c3fe3a4a331404208f--


From nobody Sun Feb 19 14:36:58 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=evx6EK79uOlNXohgB2mDJLyl4BQ=; b=UV+N5anNbcOOnzo3 2utuvefK1FaSdTZE3p9jB39MPA2FHmD15KcPXmfW2LoFkOqLmLcGtK+OFX+4G6vn o6F1SiyNEasqF/RFij+yiSjOpx/H7ceVMz9bPbLuF0TnODClJR12kIDfZpUIqt0u itutfsFaVdu8GeR44z5xPWsgRLM=
Date: Sun, 19 Feb 2017 14:36:54 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/300@github.com>
References: <httpwg/http-extensions/pull/300@github.com>
Subject: Re: [httpwg/http-extensions] fix series info for XMLENC (#300)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58aa1e061b4dd_e4b3f88e461f13c12284"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/CzUPdndOcqnjSyEsy5WqFHx3D9Q>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3627.1487543818.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 22:36:57 -0000

----==_mimepart_58aa1e061b4dd_e4b3f88e461f13c12284
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #300.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/300#event-968474110
----==_mimepart_58aa1e061b4dd_e4b3f88e461f13c12284
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/300" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/300" data-id="208737150" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#300</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/300#event-968474110">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyN6DOWf1zdBkty8MHGx7cqNHLjH5ks5reMQGgaJpZM4MFjPq">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMcn0M58VVbqJbMJ19d19Q9fMhMpks5reMQGgaJpZM4MFjPq.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/300#event-968474110"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #300."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/300#event-968474110"}}}</script>
----==_mimepart_58aa1e061b4dd_e4b3f88e461f13c12284--


From nobody Sun Feb 19 14:38:17 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=fw22ilESA434mpf9wEEe6pcasr4=; b=DvRHOdpXVUbaopiW eSQJiXGKAi6T8eMH/2U1pBUzH7+2YTic8kt/837AaNPAc/+IanbRvZeKHahrx27u USIyj1QdFv97ZduT85mm4YS4IqvCYfW0+pfhjwbDI4UKLM05KvgjToruX2ovqkwH g5iCFLiyB+QUVGq1cnKouGufP68=
Date: Sun, 19 Feb 2017 14:38:12 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6@github.com>
References: <httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6@github.com>
Subject: Re: [httpwg/http-extensions] Explain why aesgcm doesn't need a dummy parameter (6880580)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58aa1e54dc1fb_7fc93fab8660513c195295"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/8xGMYB5HpymiMW02p19WPSVjads>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3628.1487543896.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 19 Feb 2017 22:38:15 -0000

----==_mimepart_58aa1e54dc1fb_7fc93fab8660513c195295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I see that you managed to work out how to fix this.  This a very badly documented piece of code, so I'm always left guessing.  I would never have guessed your solution.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-20951700
----==_mimepart_58aa1e54dc1fb_7fc93fab8660513c195295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I see that you managed to work out how to fix this.  This a very badly d=
ocumented piece of code, so I'm always left guessing.  I would never have g=
uessed your solution.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-=
20951700">view it on GitHub</a>, or <a href=3D"https://github.com/notificat=
ions/unsubscribe-auth/AORpyFjkEnQHiSlTQNQe-_qn9EA6aAB1ks5reMRUgaJpZM4MFjLe"=
>mute the thread</a>.<img alt=3D"" height=3D"1" src=3D"https://github.com/n=
otifications/beacon/AORpyOm2SPRuLf5D7kUA-IcJ8N0f54fXks5reMRUgaJpZM4MFjLe.gi=
f" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
commit/68805802f00ea90b84a3e62c75241556d4b6e4d6#commitcomment-20951700"></l=
ink>
  <meta itemprop=3D"name" content=3D"View Commit"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Commit on GitHub"></met=
a>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson on 68=
80580: I see that you managed to work out how to fix this.  This a very bad=
ly documented piece of code, so I'm always left guessing.  I would never ha=
ve guessed your solution."}],"action":{"name":"View Commit","url":"https://=
github.com/httpwg/http-extensions/commit/68805802f00ea90b84a3e62c75241556d4=
b6e4d6#commitcomment-20951700"}}}</script>=

----==_mimepart_58aa1e54dc1fb_7fc93fab8660513c195295--


From nobody Mon Feb 20 16:55:57 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.783
X-Spam-Level: 
X-Spam-Status: No, score=-4.783 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=3uUEnEbWkTPce57oQO8rXeF0QxA=; b=MDalhp2THDCdVXgT 5W0sPTRhP3ObFu0zO7xD0qOnyn1Fu3lj/syocAE3j0bvPByADwooGQc/dIPP8h44 tj7lk39ajZybDT3U2x/p6Yj2YdKnBIAECKTx2TRFzJbMkoULbME9I8F5WjECo56T nuvUxvhlrRt1k862Y444KVEzkTY=
Date: Mon, 20 Feb 2017 16:55:33 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab900575b54_7b893fa1df419130109654"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/z9ii8U87-kfUTUX1yvUGwWvvgyI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3769.1487638557.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 00:55:57 -0000

----==_mimepart_58ab900575b54_7b893fa1df419130109654
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/301

-- Commit Summary --

  * Make the intro to http2-encryption clearer about the scope

-- File Changes --

    M draft-ietf-httpbis-http2-encryption.md (20)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/301.patch
https://github.com/httpwg/http-extensions/pull/301.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301

----==_mimepart_58ab900575b54_7b893fa1df419130109654
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/301'>https://github.com/httpwg/http-extensions/pull/301</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Make the intro to http2-encryption clearer about the scope</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/301/files#diff-0">draft-ietf-httpbis-http2-encryption.md</a>
    (20)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/301.patch'>https://github.com/httpwg/http-extensions/pull/301.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/301.diff'>https://github.com/httpwg/http-extensions/pull/301.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyLHmbr5RXIXJPnlsQAytWNUW2niDks5rejYFgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyEJIrBLI_un7xYy-ZRf5GHDd98Uxks5rejYFgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Make the intro to http2-encryption clearer about the scope (#301)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301"}}}</script>

----==_mimepart_58ab900575b54_7b893fa1df419130109654--


From nobody Mon Feb 20 16:59:37 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Mon, 20 Feb 2017 16:59:32 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487638772; bh=4w1+Lou/KNgw6DGEZIKbHZ9KPdKZMehxC02x+YgWdVc=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qy13rg5rTGqgsFeqzyss4Kfsb+rJfFYummot1rozrSB0SOFYIVJe4aGMnjDArGJ00 HhBbPody9LY9NW6i43qUvT7iL4ZGpheru8HdcJhfrM2Jjw7lZ0iHwTx6E0m3nsaJxR njpl4nlL7/TBmoLlHIf0T5rY6S8qVjaK8BWtoDyo=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab90f4c7f37_47543f87366dd13c244229"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/LOmBjuuOaaXiKDo_c3hw2ZoY_TU>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3772.1487638777.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 00:59:37 -0000

----==_mimepart_58ab90f4c7f37_47543f87366dd13c244229
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot requested changes on this pull request.

Looks pretty good to me, some tweaks here.

>  passive attacks.
 
-Opportunistic Security {{RFC7435}} does not provide the same guarantees as using TLS with `https`
-URIs; it is vulnerable to active attacks, and does not change the security context of the
+Opportunistic Security does not provide the same guarantees as using TLS with `https`
+URIs; Opportunistic Security is vulnerable to active attacks, and does not change the security context of the

I think this would read more clearly if it were just "...URIs, because it is vulnerable..."

> @@ -64,16 +64,18 @@ for this draft can be found at <https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI
+{{RFC7230}} using Transport Layer Security (TLS) {{RFC5246}}
+with Opportunistic Security {{RFC7435}}.
+
+This document describes a usage model whereby sites can serve
+`http` URIs over TLS, thereby avoiding the problem of serving 
+Mixed Content (describe in {{W3C.CR-mixed-content-20160802}}) while still providing protection against

describe**d**

> @@ -64,16 +64,18 @@ for this draft can be found at <https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI

This is worded oddly. Suggest "It allows a `http` URI to be accessed using HTTP/2 {{RFC7230}} and Transport Layer..."

> @@ -48,7 +48,7 @@ informative:
 
 --- abstract
 
-This document describes how `http` URIs can be accessed using Transport Layer Security (TLS) to
+This document describes how `http` URIs can be accessed using Transport Layer Security (TLS) in HTTP/2 to

in -> and

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#pullrequestreview-22859928
----==_mimepart_58ab90f4c7f37_47543f87366dd13c244229
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> requested changes on this pull request.</p>

<p>Looks pretty good to me, some tweaks here.</p><hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114335">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt;  passive attacks.
 
-Opportunistic Security {{RFC7435}} does not provide the same guarantees as using TLS with `https`
-URIs; it is vulnerable to active attacks, and does not change the security context of the
+Opportunistic Security does not provide the same guarantees as using TLS with `https`
+URIs; Opportunistic Security is vulnerable to active attacks, and does not change the security context of the
</pre>
<p>I think this would read more clearly if it were just "...URIs, because it is vulnerable..."</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114359">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt; @@ -64,16 +64,18 @@ for this draft can be found at &lt;https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI
+{{RFC7230}} using Transport Layer Security (TLS) {{RFC5246}}
+with Opportunistic Security {{RFC7435}}.
+
+This document describes a usage model whereby sites can serve
+`http` URIs over TLS, thereby avoiding the problem of serving 
+Mixed Content (describe in {{W3C.CR-mixed-content-20160802}}) while still providing protection against
</pre>
<p>describe<strong>d</strong></p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114478">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt; @@ -64,16 +64,18 @@ for this draft can be found at &lt;https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI
</pre>
<p>This is worded oddly. Suggest "It allows a <code>http</code> URI to be accessed using HTTP/2 {{RFC7230}} and Transport Layer..."</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114494">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt; @@ -48,7 +48,7 @@ informative:
 
 --- abstract
 
-This document describes how `http` URIs can be accessed using Transport Layer Security (TLS) to
+This document describes how `http` URIs can be accessed using Transport Layer Security (TLS) in HTTP/2 to
</pre>
<p>in -&gt; and</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#pullrequestreview-22859928">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyHlBZCS4DZddgzIEJzueR_3f6XVVks5rejb0gaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGVcMDb5CXWhvxCop8QnfzuaKvtZks5rejb0gaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#pullrequestreview-22859928"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot requested changes on #301"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#pullrequestreview-22859928"}}}</script>
----==_mimepart_58ab90f4c7f37_47543f87366dd13c244229--


From nobody Mon Feb 20 17:00:24 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=VBnVZWpZpCYKzFd/AxYrKqFj3FY=; b=OlQJMw6YElQka9bK WVKxMs7e7J3JPeK62eYJwvtkBR/9UcrW6etXyy5Adom720QGJbcTgHg8TYwytsYU BIfjlJ32m5Z31JMQJps+LsnaNSe8gIJ1WPKwcgeC/ns1oQCp+Mnm7v6C+b8bar8D fXXlfUg9GPczBbjeZdNPbTuYmjI=
Date: Mon, 20 Feb 2017 17:00:11 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab911b2e28f_186f3fb125f01138420158"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/UwA8Ru8fcK6ePGgyMdBs0ALKU2w>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3775.1487638824.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 01:00:23 -0000

----==_mimepart_58ab911b2e28f_186f3fb125f01138420158
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson thoughts?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#issuecomment-281216234
----==_mimepart_58ab911b2e28f_186f3fb125f01138420158
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> thoughts?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#issuecomment-281216234">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIDduFL0n6aBB1rMNa4Uw4eJ2ihtks5rejcbgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyPV-ODF6KaT_PH7IYGFlrEOhoz88ks5rejcbgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#issuecomment-281216234"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot in #301: @martinthomson thoughts?"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#issuecomment-281216234"}}}</script>
----==_mimepart_58ab911b2e28f_186f3fb125f01138420158--


From nobody Mon Feb 20 17:01:10 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.982
X-Spam-Level: 
X-Spam-Status: No, score=-6.982 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Mon, 20 Feb 2017 17:01:06 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487638866; bh=8Z61FuXdwmTuTuk4/ZMcUji82A+hN62c6gcMfb2ir4s=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aMB6ML5BVgvtVcoPQqaSXOgKoFPOUNyvuJJ9njiYjxIalcbam5HPRNTT34wJ+DGRe ym571cXt9QNbK40hc4SdJMXh8jCXeXKqO2L1NfNcPWs15a791Z8oZsFk9QitAevDp1 9oguPOJ1HVEC54xWcHZM3iTLiYuotRchFsop6aaY=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab91522eb2b_3d5e3f87366dd13c210763"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/PwA6H5uLGKfiwDUQCG6Bnds2O5Y>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3776.1487638869.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 01:01:09 -0000

----==_mimepart_58ab91522eb2b_3d5e3f87366dd13c210763
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

paulehoffman commented on this pull request.



>  passive attacks.
 
-Opportunistic Security {{RFC7435}} does not provide the same guarantees as using TLS with `https`
-URIs; it is vulnerable to active attacks, and does not change the security context of the
+Opportunistic Security does not provide the same guarantees as using TLS with `https`
+URIs; Opportunistic Security is vulnerable to active attacks, and does not change the security context of the

WFM

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#discussion_r102114637
----==_mimepart_58ab91522eb2b_3d5e3f87366dd13c210763
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@paulehoffman</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114637">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt;  passive attacks.
 
-Opportunistic Security {{RFC7435}} does not provide the same guarantees as using TLS with `https`
-URIs; it is vulnerable to active attacks, and does not change the security context of the
+Opportunistic Security does not provide the same guarantees as using TLS with `https`
+URIs; Opportunistic Security is vulnerable to active attacks, and does not change the security context of the
</pre>
<p>WFM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114637">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyMFtrgBOVsaITz9mjLsPUDAM7X2Nks5rejdSgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyB_Edb__XkryTSbT6cpD4McHnJBGks5rejdSgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102114637"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@paulehoffman commented on #301"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#discussion_r102114637"}}}</script>
----==_mimepart_58ab91522eb2b_3d5e3f87366dd13c210763--


From nobody Mon Feb 20 17:09:58 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.019
X-Spam-Level: 
X-Spam-Status: No, score=-2.019 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=7H5EL3mCLGCfMjNfhsEgdoEoCnc=; b=E0CMgA5tmWxVAM7f 9WKumukc4Mg2hIPYim/WidqU6Go3okzFwb07j/bn2ZWrokUC5MyShQa6IzuMkNj5 VsWAMLZT3U/xKRf5blJt5Gwl633Rt2HMD58ZRZuZ/QPWkQDU0GGCW1x3k1nOsfY3 vJCBTO727vPHExUMw4dB7vGKpuA=
Date: Mon, 20 Feb 2017 17:09:28 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab9348b394b_780a3f87366dd13c238314"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/9Zd7sGYzPPZ9uF4lfEwHc2SUFxY>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3777.1487639397.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 01:09:56 -0000

----==_mimepart_58ab9348b394b_780a3f87366dd13c238314
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

martinthomson commented on this pull request.



> @@ -64,16 +64,18 @@ for this draft can be found at <https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI

"a" or "an" for "http"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#discussion_r102115173
----==_mimepart_58ab9348b394b_780a3f87366dd13c238314
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102115173">draft-ietf-httpbis-http2-encryption.md</a>:</p>
<pre style='color:#555'>&gt; @@ -64,16 +64,18 @@ for this draft can be found at &lt;https://github.com/httpwg/http-extensions/labels
 # Introduction
 
 This document describes a use of HTTP Alternative Services {{RFC7838}} to decouple
-the URI scheme from the use and configuration of underlying encryption, allowing a `http` URI
-{{RFC7230}} to be accessed using Transport Layer Security (TLS) {{RFC5246}} opportunistically.
-
-Serving `https` URIs requires avoiding Mixed Content {{W3C.CR-mixed-content-20160802}}, which is
-problematic in many deployments. This document describes a usage model whereby sites can serve
-`http` URIs over TLS, thereby avoiding these issues, while still providing protection against
+the URI scheme from the use and configuration of underlying encryption.
+It allows HTTP/2 {{RFC7540}} to access a `http` URI
</pre>
<p>"a" or "an" for "http"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102115173">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyFaMDHQU3yfy35_quxjjAYvGeQ4Gks5rejlIgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyJPKJ_vgYMXBV-8l5HYwfCLtMouFks5rejlIgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#discussion_r102115173"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson commented on #301"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#discussion_r102115173"}}}</script>
----==_mimepart_58ab9348b394b_780a3f87366dd13c238314--


From nobody Mon Feb 20 17:20:31 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=EeZr1cMTS57lf5pa92fk0V32QSM=; b=l7Tk6NEhTF8vSX6e ozxKSaRTvZj31yP54ULq50nQzX5LPOX6XHnF+ydLIE7CWkkBE8a+iYXixdgrIJBE HcOIL86H/nCJGog8dUSjoIQWCbsCTjYwtBscy7LDYJlRPHsv7Fsdct2Npq6sUyci yroAD653ffliuYArUCARIJz1b1Y=
Date: Mon, 20 Feb 2017 17:20:27 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ab95db7a073_1ba73fa37734f134237255"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/gIY3FPtqbAY-lmEGaRX4frbp0LY>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3780.1487640031.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 01:20:30 -0000

----==_mimepart_58ab95db7a073_1ba73fa37734f134237255
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Seems fine, with the edits Mark suggested.  I'll merge and make those changes unless Paul gets to it first.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#issuecomment-281218741
----==_mimepart_58ab95db7a073_1ba73fa37734f134237255
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Seems fine, with the edits Mark suggested.  I'll merge and make those changes unless Paul gets to it first.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#issuecomment-281218741">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPA5nBe_TP-Zd3pOE12gz76MNVMSks5rejvbgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyH1kG5bbU75mlbxkfWZZWSqNR12yks5rejvbgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#issuecomment-281218741"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@martinthomson in #301: Seems fine, with the edits Mark suggested.  I'll merge and make those changes unless Paul gets to it first."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#issuecomment-281218741"}}}</script>
----==_mimepart_58ab95db7a073_1ba73fa37734f134237255--


From nobody Mon Feb 20 18:42:56 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.569
X-Spam-Level: 
X-Spam-Status: No, score=-4.569 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=mnbwPjNxIgfji7oR9PnWIoS5lPs=; b=lHLyP/bgSYjqyRYf +6UBRgpU6RBGlwEVG2qH2ahKl7wg+xaWVjceoSROr4k146zHBjFq9V0rjFBhpa/s EPfn78cc9OXjzGCmQ6u+obpKfnEAxaFvgCO2KmEmOSMnh8WwHDV0O6e9fiGklakO n3v9zDcfOLyFkqfA9jQpG+nHXqk=
Date: Mon, 20 Feb 2017 18:42:51 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/301@github.com>
References: <httpwg/http-extensions/pull/301@github.com>
Subject: Re: [httpwg/http-extensions] Make the intro to http2-encryption clearer about the scope (#301)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58aba92b987ee_503d3f8c6a35713c38081"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/_lpM18uNlyXhSlTVPk2y-R3YhHA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.3791.1487644975.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 21 Feb 2017 02:42:54 -0000

----==_mimepart_58aba92b987ee_503d3f8c6a35713c38081
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #301.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/301#event-970036522
----==_mimepart_58aba92b987ee_503d3f8c6a35713c38081
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/301" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/301" data-id="209014583" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#301</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/301#event-970036522">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyKICCWXFoJmfvX3P-Df5SIZlzCPrks5rek8rgaJpZM4MGwma">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyNlwWZywUzcz2uL_VHiQvkCQcuaFks5rek8rgaJpZM4MGwma.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/301#event-970036522"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #301."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/301#event-970036522"}}}</script>
----==_mimepart_58aba92b987ee_503d3f8c6a35713c38081--


From nobody Wed Feb 22 15:49:34 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.403
X-Spam-Level: 
X-Spam-Status: No, score=-0.403 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=ZzWfJgior4IhcXYul6tRtTzVNYc=; b=liIi8tFjVRdvSQal 5Wc806I9nFKmLfp57dI3AzPjdqwAi+xV+UklKbBnn9VEzG+1s2esvw9kfSx0NuN6 /e9KkEb7o4roDY627DQkKYMhhnfCJ+9tnOq9b5J9iNMOA0U9hAXZ3bQgVvYvwOdN +oaOQC21Od5hof8qo1tbJDx2pbY=
Date: Wed, 22 Feb 2017 15:49:31 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Typo in SameSite cookie algorithm (?) (#302)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58ae238b4efdb_19073fa36f1e5c38100724"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/qxrDYUGaWLPhpNQskRtsfdSTajI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4372.1487807374.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 22 Feb 2017 23:49:34 -0000

----==_mimepart_58ae238b4efdb_19073fa36f1e5c38100724
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Step 5 of Section 2.1.1 of https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00#section-2.1.1 says `return "top-site"`, but "top-site" isn't defined anywhere. I think it's supposed to be the registerable domain of "top-origin"?

cc @scotthelme

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/302
----==_mimepart_58ae238b4efdb_19073fa36f1e5c38100724
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Step 5 of Section 2.1.1 of <a href="https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00#section-2.1.1">https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00#section-2.1.1</a> says <code>return "top-site"</code>, but "top-site" isn't defined anywhere. I think it's supposed to be the registerable domain of "top-origin"?</p>
<p>cc <a href="https://github.com/scotthelme" class="user-mention">@scotthelme</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/302">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIoR8rn4pbKGmvWGQmVoM2cjAWUGks5rfMmLgaJpZM4MJWhe">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyNLW8TJQJbHVnJ_sJxkJWTdoyA73ks5rfMmLgaJpZM4MJWhe.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/302"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Typo in SameSite cookie algorithm (?) (#302)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/302"}}}</script>
----==_mimepart_58ae238b4efdb_19073fa36f1e5c38100724--


From nobody Fri Feb 24 06:17:21 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.403
X-Spam-Level: 
X-Spam-Status: No, score=-0.403 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=3bEqJWDdH4coxxpyi64y4arvFlo=; b=XHYmPfWSOXz3/M8H GxcxeZ+fowRiO3NUxLHhSxMMEP332LzVmW5AuMpKRtXp+5mRrlmR5PBdmgf+N1oU 9wzZwGPa6gIINo7hEfp8HZ4x7cSNfF9apTD29z4H+of9TG/GCcD2VgSQLBG6ROlX +sKrH7pq42HFcXbxku+NA3Hz2dY=
Date: Fri, 24 Feb 2017 06:17:15 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] [key] div: removing all WSP characters? (#303)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b0406b8559b_54d33fdc0aba1c301125cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/SH9f_bXTUkU_mBuwU8lXttua3QI>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4854.1487945840.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 14:17:20 -0000

----==_mimepart_58b0406b8559b_54d33fdc0aba1c301125cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In the section about div:
> 4. Remove all WSP characters from header_value.
> 5. If header_value does not match the div ABNF rule, fail parameter processing ({{fail-param}}).

So a header value
```
23   45
```
will become
```
2345
```
which matches `1*DIGIT`; everything is fine? Or is the intention to **trim** the header value?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/303
----==_mimepart_58b0406b8559b_54d33fdc0aba1c301125cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>In the section about div:</p>
<blockquote>
<ol start="4">
<li>Remove all WSP characters from header_value.</li>
<li>If header_value does not match the div ABNF rule, fail parameter processing ({{fail-param}}).</li>
</ol>
</blockquote>
<p>So a header value</p>
<pre><code>23   45
</code></pre>
<p>will become</p>
<pre><code>2345
</code></pre>
<p>which matches <code>1*DIGIT</code>; everything is fine? Or is the intention to <strong>trim</strong> the header value?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/303">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyA3E6rxz3rO4c44Kl05Y58-HSYblks5rfuZrgaJpZM4MLQEE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyE4iw4SLtwyTbXtv1_ItualUkbbnks5rfuZrgaJpZM4MLQEE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/303"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"[key] div: removing all WSP characters? (#303)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/303"}}}</script>
----==_mimepart_58b0406b8559b_54d33fdc0aba1c301125cd--


From nobody Fri Feb 24 06:24:06 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.475
X-Spam-Level: 
X-Spam-Status: No, score=-0.475 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=9ZhLrw2U69EHCxxAmXhAPpdUitw=; b=cAEQ21ZEZ3rk5FIx OA45oAz9auqbetGDMaa+Si4gIYt6Dgx2SqfPSXUbGJMVtAg+UeIfU/byPviTiG5e 6kXroHQr5cBO3XHUoRnt/MGjoiO+wIee46OMUHeQUzJ4ECPve5e72a0DyzSXNEpo r91APj2/Tt7HDKC7yBltUV9TaXw=
Date: Fri, 24 Feb 2017 06:24:02 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/303@github.com>
References: <httpwg/http-extensions/issues/303@github.com>
Subject: Re: [httpwg/http-extensions] [key] div: removing all WSP characters? (#303)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b0420267c18_2de33f8617f5d1381559"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/UEdnLP21HCaiQu9q4bkft1ozPvA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4857.1487946246.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 14:24:05 -0000

----==_mimepart_58b0420267c18_2de33f8617f5d1381559
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Same in the section about partition.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/303#issuecomment-282303011
----==_mimepart_58b0420267c18_2de33f8617f5d1381559
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Same in the section about partition.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/303#issuecomment-282303011">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyEkfC6VLfiDC7AuwjIW57glWUcwJks5rfugCgaJpZM4MLQEE">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyB27zlJvCuwgDU-nwt-0GT8stW9Dks5rfugCgaJpZM4MLQEE.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/303#issuecomment-282303011"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@waldbaerkoch in #303: Same in the section about partition."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/303#issuecomment-282303011"}}}</script>
----==_mimepart_58b0420267c18_2de33f8617f5d1381559--


From nobody Fri Feb 24 06:30:56 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=tsfkgyulkI7VEgrjrNN4xAUEZZA=; b=rOwh3W0Ke94LuejS HIhB0AFncuVVO5xvTNsgl7wFqP8dpGsWJ+Kub/KyLxIitUTwQ6wNNXPPG10sTeeW FGLOUg41PWHdVdBWMuQHcys2f6dtax5KdrThB8mskS7VTGSZ3D/cErNaV7wpUleV tB+w5OcxxttTA0fsLquAn926IWg=
Date: Fri, 24 Feb 2017 06:30:22 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] [key] partition: numbering issue (#304)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b0437e9d03e_261c3fdf1c8b3c34736a1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/CzAvYsuoOlll2Ja_5edF-LCL_7g>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4858.1487946655.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 14:30:55 -0000

----==_mimepart_58b0437e9d03e_261c3fdf1c8b3c34736a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> If header_value is less than segment_value when they are numerically compared, skip to step 7.

This should probably refer to step 8 ("Return segment_id.")

"For each segment_value in segment_list:" should get the number 7 in the markdown file (6 is already 'Create a list segment_list by splitting parameter_value on ":" characters.').

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/304
----==_mimepart_58b0437e9d03e_261c3fdf1c8b3c34736a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<blockquote>
<p>If header_value is less than segment_value when they are numerically compared, skip to step 7.</p>
</blockquote>
<p>This should probably refer to step 8 ("Return segment_id.")</p>
<p>"For each segment_value in segment_list:" should get the number 7 in the markdown file (6 is already 'Create a list segment_list by splitting parameter_value on ":" characters.').</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/304">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyKKTWqpGUI1_fJ7YIe2ZdCBLzPtgks5rful-gaJpZM4MLQ81">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyFvra0bA66MhpbhoK4ye36_DqyNLks5rful-gaJpZM4MLQ81.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/304"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"[key] partition: numbering issue (#304)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/304"}}}</script>
----==_mimepart_58b0437e9d03e_261c3fdf1c8b3c34736a1--


From nobody Fri Feb 24 09:38:23 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.269
X-Spam-Level: 
X-Spam-Status: No, score=-7.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Fri, 24 Feb 2017 09:38:19 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1487957899; bh=Us0TMNarHFPJ/dvRdwVFtlpU200zf2n9CyFr5tBGCPM=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RcTGpQLvBOer2y1nzvitCNntW11JFzeYeFcZul7sliy1cWJ7uFpk7hmhpAGXjGE0O ksRmmxsEA1kygQfYqIUMmyUiOKb9vBP13HIRrl3Ln/wzhY0kJA9MihnMcl4tR/p1gG fOFzXd5nkfKUFjGD5y1QStarY3d9i2jFi1U2CzeQ=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b06f8b29af5_5e73f80bce63c3813373c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/JgHvNYrgx5OKwQVV-FENbim0vaU>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4901.1487957902.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 17:38:21 -0000

----==_mimepart_58b06f8b29af5_5e73f80bce63c3813373c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

PTAL https://github.com/httpwg/http-extensions/pull/305. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282354086
----==_mimepart_58b06f8b29af5_5e73f80bce63c3813373c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>PTAL <a href="https://github.com/httpwg/http-extensions/pull/305" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/305" data-id="210111759" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#305</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282354086">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyC24UFvu76Tf2do5aUn_y8dvday2ks5rfxWLgaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyP2ZDSSzM-v-nSsGIMJYKEI1QaKbks5rfxWLgaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282354086"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #284: PTAL https://github.com/httpwg/http-extensions/pull/305. "}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-282354086"}}}</script>
----==_mimepart_58b06f8b29af5_5e73f80bce63c3813373c--


From nobody Fri Feb 24 09:39:15 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.02
X-Spam-Level: 
X-Spam-Status: No, score=-2.02 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=iQzvshAiG4NygF8rCnnJS1kT9Vs=; b=vdMnFWlQPq/l5/E6 kpgeuIKdb/7Cl8cBdzzRawcpxSMLHn//GtVZ9WcbFJCzhVKGuhuNBmDE4RiJ8Mlg b7B+lndB0WdoOXpSpXHpIi1lh7VBimRJHPs//B4yz+qoPbmT0QUf/XjYFtKkw4Fa 1+u/HQ+CzUeaUU5xm1JTDqGX1FI=
Date: Fri, 24 Feb 2017 09:38:00 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b06f78c7de8_5c93f80bce63c381409b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/HJSoh_6iICueviWIGx0Yk1l-3jc>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4902.1487957954.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 17:39:14 -0000

----==_mimepart_58b06f78c7de8_5c93f80bce63c381409b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Related discussions:
- https://lists.w3.org/Archives/Public/ietf-http-wg/2017JanMar/thread.html#msg143
- https://github.com/httpwg/http-extensions/issues/284
You can view, comment on, or merge this pull request online at:

  https://github.com/httpwg/http-extensions/pull/305

-- Commit Summary --

  * mark NETINFO reference as non-normative
  * extend guidance for Accept-CH

-- File Changes --

    M draft-ietf-httpbis-client-hints.md (38)

-- Patch Links --

https://github.com/httpwg/http-extensions/pull/305.patch
https://github.com/httpwg/http-extensions/pull/305.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305

----==_mimepart_58b06f78c7de8_5c93f80bce63c381409b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Related discussions:</p>
<ul>
<li><a href="https://lists.w3.org/Archives/Public/ietf-http-wg/2017JanMar/thread.html#msg143">https://lists.w3.org/Archives/Public/ietf-http-wg/2017JanMar/thread.html#msg143</a></li>
<li><a href="https://github.com/httpwg/http-extensions/issues/284" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/284" data-id="204222255" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#284</a></li>
</ul>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/httpwg/http-extensions/pull/305'>https://github.com/httpwg/http-extensions/pull/305</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>mark NETINFO reference as non-normative</li>
  <li>extend guidance for Accept-CH</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/httpwg/http-extensions/pull/305/files#diff-0">draft-ietf-httpbis-client-hints.md</a>
    (38)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/httpwg/http-extensions/pull/305.patch'>https://github.com/httpwg/http-extensions/pull/305.patch</a></li>
  <li><a href='https://github.com/httpwg/http-extensions/pull/305.diff'>https://github.com/httpwg/http-extensions/pull/305.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyJMA507xMMw0QeBhhs7FOGFtZW9Gks5rfxV4gaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyElgYWAmfGaTWCcsBjhsVbjvufKJks5rfxV4gaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Incorporate feedback on httpbis-client-hints-03 (#305)"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305"}}}</script>

----==_mimepart_58b06f78c7de8_5c93f80bce63c381409b--


From nobody Fri Feb 24 12:18:39 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.484
X-Spam-Level: 
X-Spam-Status: No, score=-2.484 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=NWIh/x7z0KqYG2MOlRBa/mzwHHI=; b=Z2cioli5MkzEdirp EgM6ebFP0EK/XvK3uyBgEIY4nMpmK//y00irqehb3aXuEEb2JpFSdtKuJRUx3Ggp R5T45h2uE+4Qg6Q2F5S8knLR+ssBQZHjlfxYpMSPOmBIFYUAV0ReXP+rDHsrTDDQ cyTAfFAYTCCEFcBcJ4izD7ZzXIE=
Date: Fri, 24 Feb 2017 12:18:28 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b095144a3cf_bdd3fa46a129140179165"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/uhO8085M4EVq-BuQ3e2kUGNcVQE>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4949.1487967518.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Feb 2017 20:18:37 -0000

----==_mimepart_58b095144a3cf_bdd3fa46a129140179165
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

What is the purpose of sending Client Hints to embedded third-parties anyway? 
How does the user know  a response to an embedded subresource contains Accept-CH? There should at least be a user agent setting so third-parties do not receive hints, preferably the default similar to the way third-party cookies are now blocked (somewhat) in Safari. A drive-by Accept-CH will be even more of a privacy risk especially if the user is never informed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282393991
----==_mimepart_58b095144a3cf_bdd3fa46a129140179165
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>What is the purpose of sending Client Hints to embedded third-parties an=
yway?<br>
How does the user know  a response to an embedded subresource contains Acce=
pt-CH? There should at least be a user agent setting so third-parties do no=
t receive hints, preferably the default similar to the way third-party cook=
ies are now blocked (somewhat) in Safari. A drive-by Accept-CH will be even=
 more of a privacy risk especially if the user is never informed.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-282393991">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyAZaM8ad5oS=
eOUiAG0lEcGxTQCrtks5rfzsUgaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyAO21kzbb0AL9=
bONbtRP7DBr7q7dks5rfzsUgaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-282393991"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@michael-oneill in #=
284: What is the purpose of sending Client Hints to embedded third-parties =
anyway? \r\nHow does the user know  a response to an embedded subresource c=
ontains Accept-CH? There should at least be a user agent setting so third-p=
arties do not receive hints, preferably the default similar to the way thir=
d-party cookies are now blocked (somewhat) in Safari. A drive-by Accept-CH =
will be even more of a privacy risk especially if the user is never informe=
d."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-e=
xtensions/issues/284#issuecomment-282393991"}}}</script>=

----==_mimepart_58b095144a3cf_bdd3fa46a129140179165--


From nobody Fri Feb 24 16:21:41 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.02
X-Spam-Level: 
X-Spam-Status: No, score=-2.02 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=M3LPR1u0b/3o190poAc1SKU0g/U=; b=vXqVwsylZk9slWqX 0N5au4w6QGP5p7GiNa6RlxhYSMS8F6lwPCfPhsLWtJLFIsR92imUj+sTqEiqfZmy tN94Fj+FzDvGOCzujQXCADvAa3jIMz3RzDJCm4+gxHbHhKXF1HjbZ2BgWAAOnsyb 0eFgfL4RtvB0WmsVktKEzE0J6e8=
Date: Fri, 24 Feb 2017 16:21:37 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b0ce119b58_7ab43fab160afc34138112"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/iV1yIVUUMDrKE_JQ9d7G4Yd6Zx8>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4978.1487982100.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2017 00:21:40 -0000

----==_mimepart_58b0ce119b58_7ab43fab160afc34138112
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It is common for sites to host resources on a CDN whose origin != document origin -- e.g. I host my images on a third-party image service and I want said CDN to optimize the resources based on advertised CH hints. Note that there is (already) nothing preventing the document from exporting the same data.. most commonly by appending it into the URL of the subresource.

Which is to say, and to reiterate once more, CH **does not** expose anything that was not previously available to the document via JavaScript and/or CSS.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282440965
----==_mimepart_58b0ce119b58_7ab43fab160afc34138112
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>It is common for sites to host resources on a CDN whose origin !=3D docu=
ment origin -- e.g. I host my images on a third-party image service and I w=
ant said CDN to optimize the resources based on advertised CH hints. Note t=
hat there is (already) nothing preventing the document from exporting the s=
ame data.. most commonly by appending it into the URL of the subresource.</=
p>
<p>Which is to say, and to reiterate once more, CH <strong>does not</strong=
> expose anything that was not previously available to the document via Jav=
aScript and/or CSS.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-282440965">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyMSmiYJgaM7=
CIxFPlhKOU5656OQOks5rf3QRgaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyBUL2Gk-1D2bJ=
HCFnaLYi9pQellmks5rf3QRgaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-282440965"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #284: =
It is common for sites to host resources on a CDN whose origin !=3D documen=
t origin -- e.g. I host my images on a third-party image service and I want=
 said CDN to optimize the resources based on advertised CH hints. Note that=
 there is (already) nothing preventing the document from exporting the same=
 data.. most commonly by appending it into the URL of the subresource.\r\n\=
r\nWhich is to say, and to reiterate once more, CH **does not** expose anyt=
hing that was not previously available to the document via JavaScript and/o=
r CSS."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/ht=
tp-extensions/issues/284#issuecomment-282440965"}}}</script>=

----==_mimepart_58b0ce119b58_7ab43fab160afc34138112--


From nobody Sat Feb 25 01:33:30 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.482
X-Spam-Level: 
X-Spam-Status: No, score=-7.482 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sat, 25 Feb 2017 01:33:26 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488015206; bh=j+8jWeKMwkPtVCHe8MJie6DMvDdqSO8zAHXPrfnfcK8=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=naC/hhTCI7/bIIAyI2mjpzXIOZuBp+hG8r9xPyujHashuQwuNvWDuluGwa0N11W2Q vp0dKL23yjGJ5RuljIpQqbld1A+PQGWbJ4mObbt9aTaCD1/wbHyUe6EpxJsBBsgDKm 9WQSc5jE1IGxIsQE8Hi4qKN8+pUmidqsm4KycJqU=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b14f66d2c44_58063fcdf613113c5764f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/pNzT8CRS9kMMYvi51wOfnMMzdfg>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4989.1488015209.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2017 09:33:29 -0000

----==_mimepart_58b14f66d2c44_58063fcdf613113c5764f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It exposes it to any resource immediately, without needing to return script in html which then has to return information in another request. It makes fingerprinting, already recognised as a privacy risk, much easier, and less detectable. 
User agents should have default settings that block Client Hints. This could be qualified on a per origin basis by DNT or a new Permission that puts the user in control.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282472678
----==_mimepart_58b14f66d2c44_58063fcdf613113c5764f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>It exposes it to any resource immediately, without needing to return s=
cript in html which then has to return information in another request. It=
 makes fingerprinting, already recognised as a privacy risk, much easier,=
 and less detectable.<br>
User agents should have default settings that block Client Hints. This co=
uld be qualified on a per origin basis by DNT or a new Permission that pu=
ts the user in control.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/284#issuecomment-282472678">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
Kwwb36kLpKP3sNdZa3NCM5y3bUGks5rf_VmgaJpZM4LyUDH">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyD1fgxdD5G4zDxhO_j-p6WBEuthmks5rf_VmgaJpZM4LyUDH.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/284#issuecomment-282472678"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
ichael-oneill in #284: It exposes it to any resource immediately, without=
 needing to return script in html which then has to return information in=
 another request. It makes fingerprinting, already recognised as a privac=
y risk, much easier, and less detectable. \r\nUser agents should have def=
ault settings that block Client Hints. This could be qualified on a per o=
rigin basis by DNT or a new Permission that puts the user in control."}],=
"action":{"name":"View Issue","url":"https://github.com/httpwg/http-exten=
sions/issues/284#issuecomment-282472678"}}}</script>=

----==_mimepart_58b14f66d2c44_58063fcdf613113c5764f--


From nobody Sat Feb 25 01:36:36 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.84
X-Spam-Level: 
X-Spam-Status: No, score=-6.84 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-1.887, RCVD_IN_SORBS_SPAM=0.5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sat, 25 Feb 2017 01:36:33 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488015393; bh=YRyYcZqdL7ysbb5bXr/ev7nITKx5hc12u0kWXMQ4Gwo=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YgUVnC7yLuFGblmFtyX8cRy1/Kp369MJYQplDsxDIEJXgkodT9kiaYMsGteogqeKz zRkj7GUoSompkXeJTdYPtjL6EBrS/IaMaq/AjDVRXCqveEjW96xvTHyUZv1cBaado4 Mk6AIaa4acQ0iK3EGOYL3nuWGrvxMK1/MB32IGyo=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b15021b853a_2a6a3fcd0eeafc341050ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/NAlxUiBm4nuMUPqFUuLM9Thd9so>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4990.1488015396.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2017 09:36:35 -0000

----==_mimepart_58b15021b853a_2a6a3fcd0eeafc341050ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

or alternatively invent a mechanism for limiting the entropy

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282472828
----==_mimepart_58b15021b853a_2a6a3fcd0eeafc341050ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>or alternatively invent a mechanism for limiting the entropy</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282472828">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyDWwtCleq92xDVGvmVLh9dRCWj2qks5rf_YhgaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyAs0dLGDqfbWT7ZR92nwQZI0JDXYks5rf_YhgaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282472828"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@michael-oneill in #284: or alternatively invent a mechanism for limiting the entropy"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-282472828"}}}</script>
----==_mimepart_58b15021b853a_2a6a3fcd0eeafc341050ba--


From nobody Sat Feb 25 04:33:14 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=ZKPUUgXPm10ih3E2732kYowHyCk=; b=uBqrsiYFKUEFdqUA ijmtN7ux16HE2TPqAM6AzFT7fvDIF8MXmGzyXz3bP4AvRwrzSVkTABkS7ygX7pav EFq5B1p2bceHaEj579UaFbuP6N+kh2f1hSk2thpCimoONr8IvY+U3tJX5/bcq12Q lRUQFY4AI/wfRrafhhH7QKxM/QI=
Date: Sat, 25 Feb 2017 04:33:09 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b1798556183_3c903f85d3fcd13426603f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/tSIyl_0nGrw560gdwArCyn06oSM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.4996.1488025993.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2017 12:33:12 -0000

----==_mimepart_58b1798556183_3c903f85d3fcd13426603f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

probably we can have an option for whitelisting / blacklisting the domains client hints should be sent to as a meta tag as well (CSP-style)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282481180
----==_mimepart_58b1798556183_3c903f85d3fcd13426603f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>probably we can have an option for whitelisting / blacklisting the domains client hints should be sent to as a meta tag as well (CSP-style)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282481180">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyCMRZPeUeeTiFS0IsMdD_CD-vIbGks5rgB-FgaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMnBNvgXtRCvIH4r4xjZnu7GBGRGks5rgB-FgaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282481180"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@inian in #284: probably we can have an option for whitelisting / blacklisting the domains client hints should be sent to as a meta tag as well (CSP-style)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-282481180"}}}</script>
----==_mimepart_58b1798556183_3c903f85d3fcd13426603f--


From nobody Sat Feb 25 09:03:16 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.886
X-Spam-Level: 
X-Spam-Status: No, score=-3.886 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=uj0hOR3BlS7b8Lqm0KW28494TVk=; b=M2fdILyzqKux3EhU g8XTWzJwwYcfrKDPYpyvvTUogEJdSC/bsM956VE1wHJI5Kaj7IxLR7HTy7FlsSlY 8xsT79FWVM/Q7F1yUsNRji9iG5iDiXd7uNkbniQUi83992GUseGjy7fBrz3HFIGZ 7lFSZgBDr1hNgBFKJisZOovNk8w=
Date: Sat, 25 Feb 2017 09:03:10 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b1b8ced36a2_56673fbd35021138813ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/7t4e6gaj6wKLuO-LL2dEJDh4HdA>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.5014.1488042195.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2017 17:03:15 -0000

----==_mimepart_58b1b8ced36a2_56673fbd35021138813ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

> User agents should have default settings that block Client Hints. This co=
uld be qualified on a per origin basis by DNT or a new Permission that puts=
 the user in control.

As I said earlier=E2=80=94see https://github.com/httpwg/http-extensions/iss=
ues/284#issuecomment-279151499=E2=80=94our guidance in the spec allows for =
this and we do recommend that they use Accept-CH as an opt-in. I'm not agai=
nst DNT or additional permissions, but we're not in a position to make thes=
e policy decisions here; those decisions need to be made by the implementer=
s. I don't think we're going to get much further in this discussion in this=
 forum.

--=20
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282496922=

----==_mimepart_58b1b8ced36a2_56673fbd35021138813ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<blockquote>
<p>User agents should have default settings that block Client Hints. This c=
ould be qualified on a per origin basis by DNT or a new Permission that put=
s the user in control.</p>
</blockquote>
<p>As I said earlier=E2=80=94see <a href=3D"https://github.com/httpwg/http-=
extensions/issues/284#issuecomment-279151499%E2%80%94our">https://github.co=
m/httpwg/http-extensions/issues/284#issuecomment-279151499=E2=80=94our</a> =
guidance in the spec allows for this and we do recommend that they use Acce=
pt-CH as an opt-in. I'm not against DNT or additional permissions, but we'r=
e not in a position to make these policy decisions here; those decisions ne=
ed to be made by the implementers. I don't think we're going to get much fu=
rther in this discussion in this forum.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-282496922">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyJ-HVq-8CpM=
pAnpufBYBtZi2JJC1ks5rgF7OgaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyDiEVHIfPusr6=
SP5cd5iShDg_Luhks5rgF7OgaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-282496922"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #284: =
\u003e User agents should have default settings that block Client Hints. Th=
is could be qualified on a per origin basis by DNT or a new Permission that=
 puts the user in control.\r\n\r\nAs I said earlier=E2=80=94see https://git=
hub.com/httpwg/http-extensions/issues/284#issuecomment-279151499=E2=80=94ou=
r guidance in the spec allows for this and we do recommend that they use Ac=
cept-CH as an opt-in. I'm not against DNT or additional permissions, but we=
're not in a position to make these policy decisions here; those decisions =
need to be made by the implementers. I don't think we're going to get much =
further in this discussion in this forum."}],"action":{"name":"View Issue",=
"url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-28=
2496922"}}}</script>=

----==_mimepart_58b1b8ced36a2_56673fbd35021138813ca--


From nobody Sun Feb 26 04:44:43 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.342
X-Spam-Level: 
X-Spam-Status: No, score=-2.342 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-1.887, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Dk4JcEbanGMXgfvyxLOKqhuwk+Y=; b=H5lK7hrW0lgZn/d7 ND0FJdNhbdjW0WEY8hQfs07d1P7ialKxwxauNcKCZ4Yh7GPNmCJfW3mke/j+cl6X 2FApfizdbWdsjm3gSGbqfteDkeYm6Zwg3LIL63OQ7QY8ZwxoUxYZsVGq6jWYlViy wa/tczWj4T+nE6QfF/1bLbPHsaI=
Date: Sun, 26 Feb 2017 04:44:39 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b2cdb71d21e_4b133f9c87e8d13c166767"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/vUVH30zasQ9ikQqnaVufMGGaqUM>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.5044.1488113082.4453.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 26 Feb 2017 12:44:41 -0000

----==_mimepart_58b2cdb71d21e_4b133f9c87e8d13c166767
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

yoavweiss approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23880870
----==_mimepart_58b2cdb71d21e_4b133f9c87e8d13c166767
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@yoavweiss</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23880870">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyC1LLeqAF1Gdr1ahONc7RYWfRnK3ks5rgXO3gaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyOaDg6bzSnPh9_j7dV9hdRiLNqRzks5rgXO3gaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23880870"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@yoavweiss approved #305"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23880870"}}}</script>
----==_mimepart_58b2cdb71d21e_4b133f9c87e8d13c166767--


From nobody Sun Feb 26 21:04:50 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.001
X-Spam-Level: 
X-Spam-Status: No, score=-2.001 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Lx1VlLbKWLuTWfjTeB4RtkgJ2nw=; b=IfL5LBWYDXjr2pfQ fv7+LxPBk8RyhViY07TOwr+FniGKMxBRPvVBF1MBAqThcKVqGOcZL43W5O+a0eBN B9cnPNh6WzCc/CNLXKA4qgysF37XulN/z8RlF/yKrR/oxvyh2xNL7U08YU6pdh8b +BBMl/nqf6e7UDUytcnC72Gk0gw=
Date: Sun, 26 Feb 2017 21:04:45 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3b36d95e19_8a73fbc38069c3814434"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/z-LlE3mvOJ0F20lVSAacU9qIeGE>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.89.1488171889.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:04:48 -0000

----==_mimepart_58b3b36d95e19_8a73fbc38069c3814434
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot requested changes on this pull request.



> @@ -130,7 +130,7 @@ Further, depending on the used hint, the server can emit additional response hea
 
 ### Advertising Support for Client Hints {#accept-ch}
 
-Servers can advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute ({{W3C.REC-html5-20141028}}).
+Servers should advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute ({{W3C.REC-html5-20141028}}).

"should" is a special word in the IETF -- do you mean SHOULD (i.e., an RFC2119 requirement)? If not, "can" is better. 

SHOULD is a bit problematic here, because typically when you use it, you should define the circumstances when the requirement can be violated.

> @@ -116,7 +116,7 @@ A Client Hint request header field is a HTTP header field that is used by HTTP c
 
 ## Sending Client Hints
 
-Clients control which Client Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. The user can be given the choice to enable, disable, or override specific hints.
+Clients control which Client Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. Implementers might provide user choice mechanisms so that users may balance privacy concerns with bandwidth limitations. Implementations specific to certain use cases or threat models might avoid transmitting these headers altogether, or limit them to secure contexts or authenticated sessions. Implementers should be aware that explaining the privacy implications of passive fingerprinting or network information disclosure may be challenging.

"Clients control which Client Hint headers and their respective header fields are communicated" -- this wording is odd. Suggest:

"Clients control which Client Hints are sent in requests, based..."

> @@ -233,7 +233,7 @@ If Viewport-Width occurs in a message more than once, the last value overrides a
 
 # The Downlink Client Hint {#downlink}
 
-The "Downlink" request header field is a number that indicates the client's maximum downlink speed in megabits per second (Mbps), as defined by the "downlinkMax" attribute in the W3C Network Information API ({{NETINFO}}).
+The "Downlink" request header field is a number that indicates the client's maximum downlink speed in megabits per second (Mbps). For example, as defined by the "downlinkMax" attribute in the W3C Network Information API ({{NETINFO}}).

I don't think defining the semantics in a "For example" is going to fly here. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23913445
----==_mimepart_58b3b36d95e19_8a73fbc38069c3814434
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/305#discussion_r103137003">draft-ietf-httpbis-client-hints.md</a>:</p>
<pre style='color:#555'>&gt; @@ -130,7 +130,7 @@ Further, depending on the used hint, the server can emit additional response hea
 
 ### Advertising Support for Client Hints {#accept-ch}
 
-Servers can advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute ({{W3C.REC-html5-20141028}}).
+Servers should advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute ({{W3C.REC-html5-20141028}}).
</pre>
<p>"should" is a special word in the IETF -- do you mean SHOULD (i.e., an RFC2119 requirement)? If not, "can" is better.</p>
<p>SHOULD is a bit problematic here, because typically when you use it, you should define the circumstances when the requirement can be violated.</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/305#discussion_r103137058">draft-ietf-httpbis-client-hints.md</a>:</p>
<pre style='color:#555'>&gt; @@ -116,7 +116,7 @@ A Client Hint request header field is a HTTP header field that is used by HTTP c
 
 ## Sending Client Hints
 
-Clients control which Client Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. The user can be given the choice to enable, disable, or override specific hints.
+Clients control which Client Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. Implementers might provide user choice mechanisms so that users may balance privacy concerns with bandwidth limitations. Implementations specific to certain use cases or threat models might avoid transmitting these headers altogether, or limit them to secure contexts or authenticated sessions. Implementers should be aware that explaining the privacy implications of passive fingerprinting or network information disclosure may be challenging.
</pre>
<p>"Clients control which Client Hint headers and their respective header fields are communicated" -- this wording is odd. Suggest:</p>
<p>"Clients control which Client Hints are sent in requests, based..."</p>

<hr>

<p>In <a href="https://github.com/httpwg/http-extensions/pull/305#discussion_r103137109">draft-ietf-httpbis-client-hints.md</a>:</p>
<pre style='color:#555'>&gt; @@ -233,7 +233,7 @@ If Viewport-Width occurs in a message more than once, the last value overrides a
 
 # The Downlink Client Hint {#downlink}
 
-The &quot;Downlink&quot; request header field is a number that indicates the client&#39;s maximum downlink speed in megabits per second (Mbps), as defined by the &quot;downlinkMax&quot; attribute in the W3C Network Information API ({{NETINFO}}).
+The &quot;Downlink&quot; request header field is a number that indicates the client&#39;s maximum downlink speed in megabits per second (Mbps). For example, as defined by the &quot;downlinkMax&quot; attribute in the W3C Network Information API ({{NETINFO}}).
</pre>
<p>I don't think defining the semantics in a "For example" is going to fly here.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23913445">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyGbTnlS9GdH99qCFUFHSbzvEdUAZks5rglltgaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLqEmTy8vsbi0auNurMPx7Spj-Odks5rglltgaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23913445"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot requested changes on #305"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23913445"}}}</script>
----==_mimepart_58b3b36d95e19_8a73fbc38069c3814434--


From nobody Sun Feb 26 21:13:28 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.383
X-Spam-Level: 
X-Spam-Status: No, score=-0.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=RCmo+QOCwbUf9YoHC9pmnnqLXFg=; b=kw+sHbBG+CNBLaTJ ek8kd0XVEk692Iu2NP8OE9OyBOLyS4gv+dWegd0/pu9fR4w4L4B30dDN3ps6FLm6 NNqYFVntX7/ASuH8/mD8snQEw0wOfbDKMQ7ZQFVflQy6HWMu+vum1H5tb3OLNI0V WA1gEyMVvtSyBdJPRkrw9QWY6Ns=
Date: Sun, 26 Feb 2017 21:13:24 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3b574b461e_19033f99ed9b31301103ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/XhRgtN1MKDYKXJBRe86xPEqdttw>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.90.1488172408.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:13:27 -0000

----==_mimepart_58b3b574b461e_19033f99ed9b31301103ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

And to be clear, this spec is for the protocol aspects of CH. We need to note the privacy and security considerations, but how it's actually used is application-specific, and the place that's being done for Web browsers is the Fetch spec. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282629843
----==_mimepart_58b3b574b461e_19033f99ed9b31301103ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>And to be clear, this spec is for the protocol aspects of CH. We need to=
 note the privacy and security considerations, but how it's actually used i=
s application-specific, and the place that's being done for Web browsers is=
 the Fetch spec.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/284#issuecomment-282629843">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyOGDIIgCwP8=
Fytvbp7ui34PEOksjks5rglt0gaJpZM4LyUDH">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyCURO9hJzKdGR=
-2JBSiChK8d0pjpks5rglt0gaJpZM4LyUDH.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/284#issuecomment-282629843"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot in #284: And t=
o be clear, this spec is for the protocol aspects of CH. We need to note th=
e privacy and security considerations, but how it's actually used is applic=
ation-specific, and the place that's being done for Web browsers is the Fet=
ch spec. "}],"action":{"name":"View Issue","url":"https://github.com/httpwg=
/http-extensions/issues/284#issuecomment-282629843"}}}</script>=

----==_mimepart_58b3b574b461e_19033f99ed9b31301103ba--


From nobody Sun Feb 26 21:41:26 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=fuuD0YwDmJ3Yh36i7QT7b74tpdg=; b=fFxfTTvNv9qVdBAv u8sVl1RxeG+WrTeeLv/QfjQYWK8t487iHW/Kr9DhRVG8TiQGjSQg3loH80DvSaJb CrEC6YZF3b4bEJZZhjDP1xRGdy8uCT92c8LaCC6PsuF+S49KwrCi5RR4V33p98E9 mIHmDEBjLj7AeQs8zq4inJOuiM4=
Date: Sun, 26 Feb 2017 21:41:22 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bc02f2a28_4d373fa4dda85c34791a4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/-cX6bY-DWoUWM2ahIyXm0KVGdyo>
Cc: Push <push@noreply.github.com>
Message-ID: <mailman.91.1488174085.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:41:25 -0000

----==_mimepart_58b3bc02f2a28_4d373fa4dda85c34791a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@igrigorik pushed 1 commit.

1e0c2d2  cleanup based on feedback


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/httpwg/http-extensions/pull/305/files/a2bb64184fce9986ddebf37db1a1a5a8e497a431..1e0c2d272dd5c4829aa6502a8a0e22411b2f0eec

----==_mimepart_58b3bc02f2a28_4d373fa4dda85c34791a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/igrigorik" class="user-mention">@igrigorik</a> pushed 1 commit.</p>

<ul>
  <li><a href="https://github.com/httpwg/http-extensions/commit/1e0c2d2" class="commit-link">1e0c2d2</a>  cleanup based on feedback</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/httpwg/http-extensions/pull/305/files/a2bb64184fce9986ddebf37db1a1a5a8e497a431..1e0c2d272dd5c4829aa6502a8a0e22411b2f0eec">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPh-S4ML2B2eZweBO4hluNewJXLLks5rgmICgaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBKgruVqlLIR7vtdLHC2j90B8XDZks5rgmICgaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305/files/a2bb64184fce9986ddebf37db1a1a5a8e497a431..1e0c2d272dd5c4829aa6502a8a0e22411b2f0eec"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik pushed 1 commit in #305"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305/files/a2bb64184fce9986ddebf37db1a1a5a8e497a431..1e0c2d272dd5c4829aa6502a8a0e22411b2f0eec"}}}</script>

----==_mimepart_58b3bc02f2a28_4d373fa4dda85c34791a4--


From nobody Sun Feb 26 21:41:49 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=cYZeE5oiX/sWMxWghx9AtlPIxbo=; b=Pt3KibIRAKqmZ8oV /nqCybZDPvFZbA//gw3zh3UU63XDjDTDHthluul+r5aep3pbMEo3jnx2FkRHyt0P 48XfTRfFIqTXwGjN7ydR80Xl/2zy1gQYc76uWm7YOTu+lAH05Ij7CI0kJm2UUCJG LvRuDr3En4T8XR6aUxRPDcLXHkU=
Date: Sun, 26 Feb 2017 21:41:40 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bc1446b68_4f9e3fa895913c3c58690"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/CxwmU2fwJfOuSRlX5sbmJwsJLac>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.92.1488174108.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:41:48 -0000

----==_mimepart_58b3bc1446b68_4f9e3fa895913c3c58690
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mnot thanks for the review, updated.. ptal.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#issuecomment-282632973
----==_mimepart_58b3bc1446b68_4f9e3fa895913c3c58690
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/mnot" class="user-mention">@mnot</a> thanks for the review, updated.. ptal.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#issuecomment-282632973">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyF5nhlzmFnID4EqoGArxytFNteXbks5rgmIUgaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyBDSXKZ-ixZnr9aaFCg9-IYftHAjks5rgmIUgaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#issuecomment-282632973"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #305: @mnot thanks for the review, updated.. ptal."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#issuecomment-282632973"}}}</script>
----==_mimepart_58b3bc1446b68_4f9e3fa895913c3c58690--


From nobody Sun Feb 26 21:45:36 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.454
X-Spam-Level: 
X-Spam-Status: No, score=-5.454 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 26 Feb 2017 21:45:33 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488174333; bh=AFQocbgf+ZcH4r2dfCNzAKLExLcbkR7VFxov7ltutHc=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m0CP3askZ6oDSNJyxHE7Jx2RaqpAapvNrcIe8m0ceREV2gPWBrKfG61J+OcU6yf7o UnA6hzrl7fkmTOW5sFvpYphCfKiCL53AEYOjnpC7k6JSxIV7OG6dmU0ONpVS8ln/6S EJxi5JIrdizO8TQmJCEbY4E+Dpjwjl5tVIsxqIqM=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bcfd5d1d2_4ce43fa4dda85c341141a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/5aufDRDQovCn0uTdytpbavMDdAY>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.93.1488174336.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:45:35 -0000

----==_mimepart_58b3bcfd5d1d2_4ce43fa4dda85c341141a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

mnot approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23915976
----==_mimepart_58b3bcfd5d1d2_4ce43fa4dda85c341141a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><b>@mnot</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23915976">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyGA_fYpr57gTCcSqa2MrLJFWLrjOks5rgmL9gaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyLlRn1a5HtXkGuOrcttzrQzc2e0Uks5rgmL9gaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23915976"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@mnot approved #305"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#pullrequestreview-23915976"}}}</script>
----==_mimepart_58b3bcfd5d1d2_4ce43fa4dda85c341141a0--


From nobody Sun Feb 26 21:49:45 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.455
X-Spam-Level: 
X-Spam-Status: No, score=-0.455 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=TJjq3istUvmr4j0dv9QgoGbroJQ=; b=ro3+G1UILsDlubAT UxGhTOAhu12Yk4YPf/75A1Ibwn8BePGAuC+T8T+rfRdKjfKDqrtmMFI4LNdUgS0r SrF5D7/aPbX1AASu0YJos+yjyufrz36i219OY+UGdJSW+bex1PuBwPRW9V4YDWtC 76+JnjbIOt25C1/fiI5/17cR6n0=
Date: Sun, 26 Feb 2017 21:48:39 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bdb7b1a1f_65813fc3b018b13c1659b5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/h4yO98-9jpIBY2hiZlB8Tusiajw>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.94.1488174584.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:49:44 -0000

----==_mimepart_58b3bdb7b1a1f_65813fc3b018b13c1659b5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#issuecomment-282633845
----==_mimepart_58b3bdb7b1a1f_65813fc3b018b13c1659b5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thanks!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#issuecomment-282633845">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyIZ6SF1XH57-lnWAtin6rVbn8ibAks5rgmO3gaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyKEOTtuCxhuRhIJD3IxmfnmJzCfeks5rgmO3gaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#issuecomment-282633845"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #305: Thanks!"}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#issuecomment-282633845"}}}</script>
----==_mimepart_58b3bdb7b1a1f_65813fc3b018b13c1659b5--


From nobody Sun Feb 26 21:50:04 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.383
X-Spam-Level: 
X-Spam-Status: No, score=-0.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Q5Xngvu5rBJWI/B+fo0QI8M2I+A=; b=q3Y0CoGVFab2EhKG bCP2Hx7dMla8oozaebAVovmfCYR/s/4xQfSlB79xRLQs+xgdkMjSn7gvSiiGx4fX fIo4eQIWHFkS1vaFGhyeUQGDk06VgOR9s5V4+jHvLtAJhgROoFznIUOvic224FKo 3KaO2q57kKSQ9OqGoEjyQzQiYaE=
Date: Sun, 26 Feb 2017 21:48:59 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bdcb2b64b_6a683fe788e9313024304"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/DAVPw8aEC4w07fD1fS-FRFkw_Us>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.97.1488174603.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:50:03 -0000

----==_mimepart_58b3bdcb2b64b_6a683fe788e9313024304
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #284.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#event-977810451
----==_mimepart_58b3bdcb2b64b_6a683fe788e9313024304
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Closed <a href="https://github.com/httpwg/http-extensions/issues/284" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/284" data-id="204222255" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#284</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#event-977810451">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyBO3OfvG8OZiF2nlhxDQ3Am1_XZHks5rgmPLgaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMkhaNeNDnGmx-ni9rqUhUfvA4r6ks5rgmPLgaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#event-977810451"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Closed #284."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#event-977810451"}}}</script>
----==_mimepart_58b3bdcb2b64b_6a683fe788e9313024304--


From nobody Sun Feb 26 21:50:10 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.402
X-Spam-Level: 
X-Spam-Status: No, score=-0.402 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=VUTgjt0TjYnKOUo4YOP3Aep15pI=; b=EWjLOUOwl0CMWjWq Ux0MgIS/5UYX5+daARlmkeZ9LdgWvj8AyMXmPlk7g5oJtcSdu0zVe/ENmasKNlZz oxDwL/y4XzUQatEB7X5y2s/TsVRVTbHL5f03H8GdNKUXGc8ieycB2by+l0kbVict xawdTFre8TTPOt2lwcHJi/BBudg=
Date: Sun, 26 Feb 2017 21:48:58 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/284@github.com>
References: <httpwg/http-extensions/issues/284@github.com>
Subject: Re: [httpwg/http-extensions] Requiring Accept-CH (#284)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bdcacda49_4ce73fa4dda85c3419816"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/MWRtuyfi7Zdd2508yBZHQd4DfCo>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.98.1488174607.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:50:04 -0000

----==_mimepart_58b3bdcacda49_4ce73fa4dda85c3419816
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Resolved via https://github.com/httpwg/http-extensions/pull/305.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/284#issuecomment-282633883
----==_mimepart_58b3bdcacda49_4ce73fa4dda85c3419816
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Resolved via <a href="https://github.com/httpwg/http-extensions/pull/305" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/305" data-id="210111759" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#305</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282633883">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyBumPWGOsBFjTfVrHAFtavMtSSs-ks5rgmPKgaJpZM4LyUDH">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyOjsZUEs6hhNQdA75fh5cHuTrkeyks5rgmPKgaJpZM4LyUDH.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/284#issuecomment-282633883"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@igrigorik in #284: Resolved via https://github.com/httpwg/http-extensions/pull/305."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/284#issuecomment-282633883"}}}</script>
----==_mimepart_58b3bdcacda49_4ce73fa4dda85c3419816--


From nobody Sun Feb 26 21:58:28 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.381
X-Spam-Level: 
X-Spam-Status: No, score=-5.381 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 26 Feb 2017 21:48:32 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488174512; bh=UulORPzrbpKsMJpoarLHUeTXJJeJQTdrCrW50rMvdss=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sz75zzyf3+YAUOQROAlyqnhfRfCo1KxywyNA4daJ2trBynEnD1/ObDxX9D2gTkL8N uQzU3IbQIHbBsCU1r+ThJ8XCCtJW+XGIC/oC0QoDM2RYAn6QoxVeSX0HbzL1XGV/fi mC+qn0hsHhAq19NZEZJ05ss0x3pT/+GrYDWR6CpQ=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/pull/305@github.com>
References: <httpwg/http-extensions/pull/305@github.com>
Subject: Re: [httpwg/http-extensions] Incorporate feedback on httpbis-client-hints-03 (#305)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3bdb04c89e_7d3e3ffcc511b14076450"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/DO5IumnRtPah0Kbk5GLojTixPHQ>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.99.1488175107.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 05:58:27 -0000

----==_mimepart_58b3bdb04c89e_7d3e3ffcc511b14076450
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #305.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/pull/305#event-977810149
----==_mimepart_58b3bdb04c89e_7d3e3ffcc511b14076450
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Merged <a href="https://github.com/httpwg/http-extensions/pull/305" class="issue-link js-issue-link" data-url="https://github.com/httpwg/http-extensions/issues/305" data-id="210111759" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#305</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/pull/305#event-977810149">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyPWROMNx1Mtk_ksn--sC_57fEnUFks5rgmOwgaJpZM4MLekC">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyGEwBck_5yknmXlPQgGLds554KQqks5rgmOwgaJpZM4MLekC.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/pull/305#event-977810149"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Merged #305."}],"action":{"name":"View Pull Request","url":"https://github.com/httpwg/http-extensions/pull/305#event-977810149"}}}</script>
----==_mimepart_58b3bdb04c89e_7d3e3ffcc511b14076450--


From nobody Sun Feb 26 23:17:11 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.999
X-Spam-Level: 
X-Spam-Status: No, score=-6.999 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Sun, 26 Feb 2017 23:17:06 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488179826; bh=aRbFHNBM+KNXpDfbJRyaBNF0HVqtIn8iTijUlp0tQL0=; h=From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YC4QsGgUldpsyAJAHAmQfv1hEAEhI4x3Iv4wqxAt8PnlVU1IwSJuRR+Wp9qtnWtZG o+PmXsS9YxQcfzcDayTh9r1MSN6kH86DBdWVfMFnsfII+ws7xGW1otyowhWfmHT/Jb guu1uYCvOoBXLZcX8T28SQ/Nyu0FouT86QP1Jrlw=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
Subject: [httpwg/http-extensions] Allow servers to specify max-age in the client hints header (#306)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b3d2728b686_23133fa895913c3c89114"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/hdQH02tPkBHVcOr4mNFPe6LQ8n8>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.103.1488179830.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 07:17:09 -0000

----==_mimepart_58b3d2728b686_23133fa895913c3c89114
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The [Accept-CH](http://httpwg.org/http-extensions/client-hints.html) header is currently included by origin servers in HTTP responses if they are interested in receiving client hints from the browser (e.g., DPR). The spec currently does not require browsers to persist the opt-in across browser restarts. This means that if the origins are interested in receiving hints on all requests, then they need to include the Accept-CH header on all responses. This has two disadvantages: (i) Browsers currently fail to include the hints on the first request after the browser restart; and, (ii) It may not be possible for the origin servers to include the Accept-CH header on all responses due to responses being served out of different endpoints (CDNs etc.).

To fix this: The Accept-CH header should also support a [max-age](http://wicg.github.io/reporting/#max-age-member) header value which indicates for how long should the browser remember this opt-in (including across browser restarts). A value of max-age set to 0 should cause the browser to stop sending client-hints to the origin. As an example,

`Accept-CH: feature1, feature2, max-age=86400`

would imply that the browser should include hints `feature1` and `feature2` for next 86400 seconds for that origin.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/306
----==_mimepart_58b3d2728b686_23133fa895913c3c89114
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The <a href="http://httpwg.org/http-extensions/client-hints.html">Accept-CH</a> header is currently included by origin servers in HTTP responses if they are interested in receiving client hints from the browser (e.g., DPR). The spec currently does not require browsers to persist the opt-in across browser restarts. This means that if the origins are interested in receiving hints on all requests, then they need to include the Accept-CH header on all responses. This has two disadvantages: (i) Browsers currently fail to include the hints on the first request after the browser restart; and, (ii) It may not be possible for the origin servers to include the Accept-CH header on all responses due to responses being served out of different endpoints (CDNs etc.).</p>
<p>To fix this: The Accept-CH header should also support a <a href="http://wicg.github.io/reporting/#max-age-member">max-age</a> header value which indicates for how long should the browser remember this opt-in (including across browser restarts). A value of max-age set to 0 should cause the browser to stop sending client-hints to the origin. As an example,</p>
<p><code>Accept-CH: feature1, feature2, max-age=86400</code></p>
<p>would imply that the browser should include hints <code>feature1</code> and <code>feature2</code> for next 86400 seconds for that origin.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyJJAKyhNHlSDv0aBTiHJ1rwp_Wvwks5rgnhygaJpZM4MMxOI">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyAh8cewniWN7UG4ne37cc2WjLPckks5rgnhygaJpZM4MMxOI.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/306"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"DESCRIPTION","message":"Allow servers to specify max-age in the client hints header (#306)"}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/306"}}}</script>
----==_mimepart_58b3d2728b686_23133fa895913c3c89114--


From nobody Mon Feb 27 09:25:54 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.596
X-Spam-Level: 
X-Spam-Status: No, score=-5.596 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Date: Mon, 27 Feb 2017 09:25:51 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1488216351; bh=sC8eDkgXD6/EbkI/RCr6G6Hcpz4wz6s906kIbui6zOg=; h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=miDXkUHvDB9aHqvtalYAoVNLYaT1huanp7prxkeDsvTpaMLc4nke2BOJnH5jag6sl 3yb6uP6xznBcivujVSZ4LmMCK8To6Ii8+Esuep3HvPaIyH8CCVIfkp4jdikMmu6uBG DOv5qlI1EuCUUynT3x+dAyGCMgazaY/rIi3H3DXs=
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/306@github.com>
References: <httpwg/http-extensions/issues/306@github.com>
Subject: Re: [httpwg/http-extensions] Allow servers to specify max-age in the client hints header (#306)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b4611f4ac72_10193fc7a8853c3489750"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/5uSSqDq55u9eO0B6wx4shujijzs>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.192.1488216354.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 17:25:54 -0000

----==_mimepart_58b4611f4ac72_10193fc7a8853c3489750
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It crossed my mind also that the response determines a future request, so how long in the future?

Why not create a well-known named cookie, similar to the cookie prefix idea in RFC6265bis, then use that to convey Accept-CH. Then you get the potential fingerprinting showing up in the cook,ie store where the user (or privacy extensions) can see it. You also get the expiry functionality  for free. 

And the SameSite attribute to help with privacy.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/306#issuecomment-282788867
----==_mimepart_58b4611f4ac72_10193fc7a8853c3489750
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>It crossed my mind also that the response determines a future request,=
 so how long in the future?</p>
<p>Why not create a well-known named cookie, similar to the cookie prefix=
 idea in RFC6265bis, then use that to convey Accept-CH. Then you get the =
potential fingerprinting showing up in the cook,ie store where the user (=
or privacy extensions) can see it. You also get the expiry functionality =
 for free.</p>
<p>And the SameSite attribute to help with privacy.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/http=
wg/http-extensions/issues/306#issuecomment-282788867">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AORpy=
LrZSaV5lVx4wCvPOV5JQFH0PHz-ks5rgwcfgaJpZM4MMxOI">mute the thread</a>.<img=
 alt=3D"" height=3D"1" src=3D"https://github.com/notifications/beacon/AOR=
pyPfCTGyC2vDemu2R6UoiEl-NpWmhks5rgwcfgaJpZM4MMxOI.gif" width=3D"1" /></p>=

<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewActi=
on">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extension=
s/issues/306#issuecomment-282788867"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></me=
ta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_versio=
n":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name"=
:"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","titl=
e":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_ur=
l":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5=
d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubu=
sercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b5249811277=
7.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg=
/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@m=
ichael-oneill in #306: It crossed my mind also that the response determin=
es a future request, so how long in the future?\r\n\r\nWhy not create a w=
ell-known named cookie, similar to the cookie prefix idea in RFC6265bis, =
then use that to convey Accept-CH. Then you get the potential fingerprint=
ing showing up in the cook,ie store where the user (or privacy extensions=
) can see it. You also get the expiry functionality  for free. \r\n\r\nAn=
d the SameSite attribute to help with privacy.\r\n\r\n\r\n\r\n"}],"action=
":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/i=
ssues/306#issuecomment-282788867"}}}</script>=

----==_mimepart_58b4611f4ac72_10193fc7a8853c3489750--


From nobody Mon Feb 27 10:12:41 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.383
X-Spam-Level: 
X-Spam-Status: No, score=-0.383 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=Ivp0bwHFaVbH2LDtbu0otJcMW9o=; b=SqlFSzTuOuhIKio2 kZ6Llm8QEYzxJvJNP19yHtmQHI4GO64KSNqw3dOj6bguhhEDUPzGcsALpuCIOWLl YmPlyVyYqO3YLC2+9bcCFQkb7vfh7lT5RXEi79W5pwUf1i2L2vadBbpbyWX4EV1d OENbwpfQ3vSas8CQHww24Je+q80=
Date: Mon, 27 Feb 2017 10:12:15 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/306@github.com>
References: <httpwg/http-extensions/issues/306@github.com>
Subject: Re: [httpwg/http-extensions] Allow servers to specify max-age in the client hints header (#306)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b46bff40b94_59a73f9d3fd61c3c78329"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/HGbG-MoRoYyu8yoQ1hQ9NEMzXZ8>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.216.1488219160.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2017 18:12:39 -0000

----==_mimepart_58b46bff40b94_59a73f9d3fd61c3c78329
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@michael-oneill I am not sure if cookies are the best place to store this information given that cookies are used by servers for state management, and this does not seem to fit that use case.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/306#issuecomment-282801985
----==_mimepart_58b46bff40b94_59a73f9d3fd61c3c78329
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/michael-oneill" class="user-mention">@michael-oneill</a> I am not sure if cookies are the best place to store this information given that cookies are used by servers for state management, and this does not seem to fit that use case.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/httpwg/http-extensions/issues/306#issuecomment-282801985">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AORpyFegZxYGX1neHNuVf43-e9t-8XxNks5rgxH_gaJpZM4MMxOI">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AORpyMonG27TwzUVF9QOUoBQsLuPQWpYks5rgxH_gaJpZM4MMxOI.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/httpwg/http-extensions/issues/306#issuecomment-282801985"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"httpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions"}},"updates":{"snippets":[{"icon":"PERSON","message":"@tarunban in #306: @michael-oneill I am not sure if cookies are the best place to store this information given that cookies are used by servers for state management, and this does not seem to fit that use case."}],"action":{"name":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/306#issuecomment-282801985"}}}</script>
----==_mimepart_58b46bff40b94_59a73f9d3fd61c3c78329--


From nobody Tue Feb 28 01:51:40 2017
Delivered-To: http-issues@ietfa.amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.598
X-Spam-Level: 
X-Spam-Status: No, score=-0.598 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=no autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=GtjrQlvKLiUWTkuV8o7bA3eQDew=; b=QXgweVJKkdjtlnoh EYj+egzxXL2Pn2ycCf5/q8IGu3+LwopaUYvKPhmxBFpkBVjKAcfn9QEH8KeRS/Wa rFXJGZYiJhrfKC+S9auLIFINqK/Ehoc6FiU7UPQ22BlnNSnfzb91Ho8fmgtITuS/ iXTt81fz1bkXOsodjTVYAmuQkfQ=
Date: Tue, 28 Feb 2017 01:51:36 -0800
To: httpwg/http-extensions <http-extensions@noreply.github.com>
In-Reply-To: <httpwg/http-extensions/issues/306@github.com>
References: <httpwg/http-extensions/issues/306@github.com>
Subject: Re: [httpwg/http-extensions] Allow servers to specify max-age in the client hints header (#306)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_58b54828ee8ac_74ad3fb9c506fc3490754"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
Archived-At: <https://mailarchive.ietf.org/arch/msg/http-issues/XKH9hRjKpACO7-T8kUiUOxV-VDo>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <mailman.353.1488275500.4918.http-issues@ietf.org>
From: HTTP issue updates <http-issues@ietf.org>
X-BeenThere: http-issues@ietf.org
X-Mailman-Version: 2.1.17
Reply-To: http-issues@ietf.org
List-Id: HTTP issue updates <http-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/http-issues>, <mailto:http-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/http-issues/>
List-Post: <mailto:http-issues@ietf.org>
List-Help: <mailto:http-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-issues>, <mailto:http-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 28 Feb 2017 09:51:39 -0000

----==_mimepart_58b54828ee8ac_74ad3fb9c506fc3490754
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Accept-CH makes the UA retain the state on what Client Hints are to be sent in future requests. The problem with Client Hints is that they can (will) be used to identify users by fingerprinting their UAs. 

Users know to some extent that cookies are used to identify them, so why not hold this identifying styate their also.

It increases transparency,, enables user control and does not re-invent the wheel.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/httpwg/http-extensions/issues/306#issuecomment-282993375
----==_mimepart_58b54828ee8ac_74ad3fb9c506fc3490754
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>Accept-CH makes the UA retain the state on what Client Hints are to be s=
ent in future requests. The problem with Client Hints is that they can (wil=
l) be used to identify users by fingerprinting their UAs.</p>
<p>Users know to some extent that cookies are used to identify them, so why=
 not hold this identifying styate their also.</p>
<p>It increases transparency,, enables user control and does not re-invent =
the wheel.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&mda=
sh;<br />You are receiving this because you are subscribed to this thread.<=
br />Reply to this email directly, <a href=3D"https://github.com/httpwg/htt=
p-extensions/issues/306#issuecomment-282993375">view it on GitHub</a>, or <=
a href=3D"https://github.com/notifications/unsubscribe-auth/AORpyIWoQH-Hm-V=
641fCDAy6n9ARfbDzks5rg-4ogaJpZM4MMxOI">mute the thread</a>.<img alt=3D"" he=
ight=3D"1" src=3D"https://github.com/notifications/beacon/AORpyE5s9o7H24dZZ=
EJ1kycIHaghy6Ijks5rg-4ogaJpZM4MMxOI.gif" width=3D"1" /></p>
<div itemscope itemtype=3D"http://schema.org/EmailMessage">
<div itemprop=3D"action" itemscope itemtype=3D"http://schema.org/ViewAction=
">
  <link itemprop=3D"url" href=3D"https://github.com/httpwg/http-extensions/=
issues/306#issuecomment-282993375"></link>
  <meta itemprop=3D"name" content=3D"View Issue"></meta>
</div>
<meta itemprop=3D"description" content=3D"View this Issue on GitHub"></meta>
</div>

<script type=3D"application/json" data-scope=3D"inboxmarkup">{"api_version"=
:"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"Gi=
tHub"},"entity":{"external_key":"github/httpwg/http-extensions","title":"ht=
tpwg/http-extensions","subtitle":"GitHub repository","main_image_url":"http=
s://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-9=
5fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.c=
om/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action=
":{"name":"Open in GitHub","url":"https://github.com/httpwg/http-extensions=
"}},"updates":{"snippets":[{"icon":"PERSON","message":"@michael-oneill in #=
306: Accept-CH makes the UA retain the state on what Client Hints are to be=
 sent in future requests. The problem with Client Hints is that they can (w=
ill) be used to identify users by fingerprinting their UAs. \r\n\r\nUsers k=
now to some extent that cookies are used to identify them, so why not hold =
this identifying styate their also.\r\n\r\nIt increases transparency,, enab=
les user control and does not re-invent the wheel.\r\n\r\n"}],"action":{"na=
me":"View Issue","url":"https://github.com/httpwg/http-extensions/issues/30=
6#issuecomment-282993375"}}}</script>=

----==_mimepart_58b54828ee8ac_74ad3fb9c506fc3490754--

