From owner-freebsd-chat@FreeBSD.ORG Tue Dec 4 19:21:20 2012 Return-Path: Delivered-To: chat@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 87C63CA for ; Tue, 4 Dec 2012 19:21:20 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0270E8FC13 for ; Tue, 4 Dec 2012 19:21:19 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id j13so4551509lah.13 for ; Tue, 04 Dec 2012 11:21:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=NnrS/irio6UbgphsgvPpFFMBCrKs/LcvV6Cc9Sov+ec=; b=ZxpmS0TIuujvE6X5J1uBylJ15wtiKwMNOtnm4rmhPOpCmUgkAlnpysv17YggCW9Rhu uy0WuytyjbFYcJPMM2JkZYSX/Gm+733MUzCP/aszPrqoTYbDU5nt2p9TLyN6MzaLoLPo JKbXnKT88dg0EbcWWdREURMTb1qy1DgjXTW7U= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=NnrS/irio6UbgphsgvPpFFMBCrKs/LcvV6Cc9Sov+ec=; b=bsgyHtc4Yz+WNxXQ9BzZw27iVv7M855AfrdPUhXoZEUIqZmAi/NAf62NXU4CtjERPH qRtC6u2h6RksgrEWrkZdYYQhXRhHmQ3PE8iGEM61LxHdG+xTiVKDxktLg+E3wUauSsDE X9FP+jhSavctABtG43XVzjEaccZLyUasL7/NARP55NG2JYZohNH4/nRu/n3ZXfIAG4cr DA68zMG9jj2MYAmqsTPWIp3dSVLDe2ByvneKPWsquEqTuKBh+0IqhF5CF3icGBL02itL iZvo6dXY8HRyDlauus197mAIVED10kMIU3oFJMYzGRJ4+aViM4PNMbQk2mdvl7Z/r+Vc mDIw== Received: by 10.112.25.34 with SMTP id z2mr6247553lbf.125.1354648878294; Tue, 04 Dec 2012 11:21:18 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.4.134 with HTTP; Tue, 4 Dec 2012 11:20:48 -0800 (PST) In-Reply-To: <201212041900.MAA14107@lariat.net> References: <201212041900.MAA14107@lariat.net> From: Eitan Adler Date: Tue, 4 Dec 2012 14:20:48 -0500 Message-ID: Subject: Re: Google spyware on FreeBSD Web site? To: Brett Glass Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmsVQcfgpY/J3czpj5y4/lt5Dz7rskvPjt47kFkeyNqgL5scjJg4TTtejgG01wFSaCrnoDy Cc: chat@freebsd.org X-BeenThere: freebsd-chat@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Non technical items related to the community List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Dec 2012 19:21:20 -0000 On 4 December 2012 14:00, Brett Glass wrote: > What's more, at least one organization which is paid to lobby for Google > in Washington, DC has announced that it does not intend to honor, and > does not recommend that Web sites honor, the "Do Not Track" header. > So, even if users are knowledgeable enough to cause their browsers to > generate this header (most are not), there is no reason to trust Google > to honor it. FreeBSD will be the party honoring it, not Google, even for non-conforming implementations of the DNT header. On 4 December 2012 14:08, pete wright wrote: > Do you have a link to this annoucement as well as an example of the > Javascript that will deployed for dropping cookies and/or > local-storage files from google that will deployed via *.freebsd.org > servers? I'd be keen to see more info on this. The full patch will be released shortly but it will look something like: if (window.navigator.doNotTrack !== "yes") { ( function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = 'https://ssl.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); } -- Eitan Adler