From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 13 19:58:36 2020 Received: (at submit) by debbugs.gnu.org; 14 Jan 2020 00:58:36 +0000 Received: from localhost ([127.0.0.1]:60460 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irAXT-0003cc-Qp for submit@debbugs.gnu.org; Mon, 13 Jan 2020 19:58:36 -0500 Received: from lists.gnu.org ([209.51.188.17]:58085) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irAXS-0003cV-Sm for submit@debbugs.gnu.org; Mon, 13 Jan 2020 19:58:35 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:37195) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irAXR-0003Ij-By for guix-patches@gnu.org; Mon, 13 Jan 2020 19:58:34 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irAXQ-0004uK-4g for guix-patches@gnu.org; Mon, 13 Jan 2020 19:58:33 -0500 Received: from lepiller.eu ([2a00:5884:8208::1]:47000) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1irAXP-0004mM-Fo for guix-patches@gnu.org; Mon, 13 Jan 2020 19:58:32 -0500 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id e7eb96c2 for ; Tue, 14 Jan 2020 00:58:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=lepiller.eu; h=date:from :to:subject:message-id:mime-version:content-type; s=dkim; bh=Ik+ EcibZppVfjbIGI0JMVA97OnA=; b=cZK4z5uD1gp+fr/SibGtMqI1nuuvFx2DZyP tqMfWFjMJqgLTF0FydGMMHwHv233Cai1CRgDH6eSEnSgOTIyH4Qt4pmYGGu/kpJO 7e5Id62zwCGeCEFExpopHOO3c5xaLyUQr12GZf4SGiTJUVi0IjMrGcV9qaCUe9BV IdtT3/U0w/Reln1QpZpMhtP54OJwKbzlnwy+oBOYhY04cO13ZGuyOG5mnwRpjiQZ atHlfbD6qbUpPZEEQKJSL8uQiQlcj/0/a71XsngAWH3bGBezhgZu6sDz2GtMKtWy MUVHXaz+kv5WpZc+LSA1IV3GhCR2FCAiLu1dxfZBEWPUCnVM2aw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id d4020fb5 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 14 Jan 2020 00:58:26 +0000 (UTC) Date: Tue, 14 Jan 2020 01:58:19 +0100 From: Julien Lepiller To: guix-patches@gnu.org Subject: [PATCH] fixing icecat's multimedia Message-ID: <20200114015819.713f4e4f@tachikoma.lepiller.eu> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/MlT0rDM8KC6EiIwySmyY3oV" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a00:5884:8208::1 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --MP_/MlT0rDM8KC6EiIwySmyY3oV Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline =46rom IRC yesterday, I found that icecat was still missing something to properly read multimedia streams, like mp3/mp4. In the current version, it now tries to open ffmpeg's library dynamically, by looking in the store, instead of standard locations (/usr/lib etc). But this is not enough: even if icecat can properly find the library, it cannot load it because it uses a sandboxing feature that only allows it to read and write files from/to specific locations. /gnu/store is not part of them. Since icecat has access to /lib and /usr/lib, I think we can also give it read access (not write) to /gnu/store. This patch attempts to do just that, but I couldn't build icecat because of a lack of space. It sets the default security.sandbox.content.read_path_whitelist to /gnu/store/, the leading / meaning "and everything under it, recursively"). Wdyt? --MP_/MlT0rDM8KC6EiIwySmyY3oV Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-icecat-Give-access-to-the-store-to-the-sandbox.patch >From adf7fdeffaa806edcd8abdac0746c06dad52c495 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 14 Jan 2020 01:48:42 +0100 Subject: [PATCH] gnu: icecat: Give access to the store to the sandbox. * gnu/packages/gnuzilla.scm (icecat): Add punch-hole-in-sandbox phase. --- gnu/packages/gnuzilla.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 62b4390eab..14f446ee0a 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -971,6 +971,14 @@ from forcing GEXP-PROMISE." (("libavcodec\\.so") (string-append (assoc-ref inputs "ffmpeg") "/lib/libavcodec.so"))) #t)) + (add-after 'fix-ffmpeg-runtime-linker 'punch-hole-in-sandbox + (lambda _ + (substitute* "browser/app/profile/icecat.js" + (("\"security.sandbox.content.read_path_whitelist\", \"\"") + (string-append + "\"security.sandbox.content.read_path_whitelist\", \"" + (%store-directory) "/\""))) + #t)) (replace 'bootstrap (lambda _ (invoke "sh" "-c" "autoconf old-configure.in > old-configure") -- 2.24.0 --MP_/MlT0rDM8KC6EiIwySmyY3oV-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 13 20:29:26 2020 Received: (at 39127) by debbugs.gnu.org; 14 Jan 2020 01:29:26 +0000 Received: from localhost ([127.0.0.1]:60483 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irB1K-0004RE-0o for submit@debbugs.gnu.org; Mon, 13 Jan 2020 20:29:26 -0500 Received: from tobias.gr ([80.241.217.52]:55096) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irB1H-0004R5-TY for 39127@debbugs.gnu.org; Mon, 13 Jan 2020 20:29:24 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id 13e633d6; Tue, 14 Jan 2020 01:29:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=tQwSt8auTIYDRXLUkyYU7R 0g0rS7P4ztlnu6yFn+/7M=; b=FNy1T/QdT0gEjPNBPBGE769/ujaBGF9XPP3POH +hCPPLgkDx0vSUk/vTr0XRLBE1fGAbXx1vTzVqYKlun4YwZN0k43lxTVGJWB4I/y yHio5fMNl+nyPNQOv3zh2vVuLgPZYAq4BupNk1u+txHv9CvkwhoU+JAdluOOhY4L fbEPHmKfRpVufVxpZYU5+9oXazz65TG/KZ0Vu8m9PR/JPGiOGEtDOXf9E80AYwa7 8yZcNreXbOFdUHSZ8TFMfB+n+wJH4W8VlXAEVq2zcWsxGGA4Lal1tmEsXxVa9ojE FvOPQb+ca6ADLSNR4KX9jgiCDmaghlYx6HElUfZF/pzuLvIw== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 1518d73b (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Tue, 14 Jan 2020 01:29:21 +0000 (UTC) From: Tobias Geerinckx-Rice To: 39127@debbugs.gnu.org, Julien Lepiller Subject: Re: [bug#39127] [PATCH] fixing icecat's multimedia References: <20200114015819.713f4e4f@tachikoma.lepiller.eu> In-reply-to: <20200114015819.713f4e4f@tachikoma.lepiller.eu> Date: Tue, 14 Jan 2020 02:29:20 +0100 Message-ID: <87eew2hllb.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 39127 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Julien, Thanks! For anything with =E2=80=98security=E2=80=99 *and* =E2=80=98sandbo= x=E2=80=99 in the name=20 we should definitely involve IceCat upstream. Julien Lepiller =E5=86=99=E9=81=93=EF=BC=9A > (substitute* "browser/app/profile/icecat.js" > (("\"security.sandbox.content.read_path_whitelist\", \"\"") > (string-append > "\"security.sandbox.content.read_path_whitelist\", \"" > (%store-directory) "/\""))) When I asked bandali on IRC a few weeks(?) ago about this exact=20 patch, they didn't sound convinced. But we were both quite unsure=20 :-) Have things changed? Have you talked to Mark? > Since icecat has access to /lib and /usr/lib, I think we can=20 > also give > it read access (not write) to /gnu/store. That sounds reasonable, if you're certain that it's read-only. > Wdyt? LGTM from the Guix side. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl4dGXAACgkQ2Imw8BjF STxD1w//TwjqW3vUr91rsliI9WaWfCvxoGvlXXH5eR9w6JY6JN0bXOzG+kD6TNbC 6wgpL1X/ZmyMJ/E1luF/cUCrT17lCvo0qEYj1XvQ8S4rPEmTg8KnbwaBP0GbidCR 5YBvrWfM+NuM3ax5DVk589fBrhzeKtPyo4YEuHysnTdk+0sxJ7CyBY+yRvMiZ3Qv W7pVhQ3AVxAQoI2kEjOmYp3aUMuL6D/QNufZTXpcdIYVJeeluIKs5nGE7ffysxOt nMrwqyR8B4/PXNiq6gOOcayELr68ek7ReNIKoDSIkPoNrotytJ/UQ21WeJ9hPL4a 9h5b2zYAcV+CaERsQBL3cyvOObcLqpDIJSqGZcBmsnlQdbr81p1vpIyVGXAkPyRT jStGffRZoHYxncdEdGc7MhB5Z0yLThZKDBU5eNxSAwp+/wlJdkosNdCUzRUHEfoU 31bo48Z6yxiF2HQ+Ufzjue1v0Msm00uUY+48suBlefxQq/65V1w+B4zxsUlPFb0R zHacozpVMNDvaiR8sPOCUcYwtbINSVZ+pTI520A2aiMa4ZMRl/jjDKNJ4LfwhbLW nEdXteEtjn5IUcIiMj1Sj1ksE/bcmX4SrVCr1xzBHxhC1+f5Lfcbw+brL/udz3fH kpIuVb+N2WwaI/aIYoUeGoVd/6OykyAo9bio3ScPx9VSmvWCSO0= =Uob7 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 13 20:36:19 2020 Received: (at 39127) by debbugs.gnu.org; 14 Jan 2020 01:36:19 +0000 Received: from localhost ([127.0.0.1]:60490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irB7z-0004eA-N9 for submit@debbugs.gnu.org; Mon, 13 Jan 2020 20:36:19 -0500 Received: from lepiller.eu ([89.234.186.109]:58674) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irB7v-0004dz-Dm for 39127@debbugs.gnu.org; Mon, 13 Jan 2020 20:36:18 -0500 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id bacfea0e; Tue, 14 Jan 2020 01:36:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=lepiller.eu; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=dkim; bh=c2Ch8/v2eII9 3zs3O3/Zx8X18lQ=; b=PE/mvRHUfk+JyqHFLMdUIzdjUa89IFG6fdu2A7ihMjw4 YECE5p6kLi3B5QThm5giqgM5+AV1bN9IhcQyzPmzheAKQIm5MTbH1gjvUAUshGfS 5l3T9AOixDQu+Hb816J0z1A23slOtl77FtA6OdVULZpSBqLNQkYCETL1kbhqE3WF B8U6LjqOO7RgOVlhnYajBueq6UcEx6QUfU5L/KE/eu8ToIPWmXdKiu5S92yDtHj4 /JcmwVjYkQX0CdzXcdby3rq1p/MAI4L85MHCfe45XS5zosFvGtpIvtgVzlRDHWBe TKDKbBBq1pwrGzpJQrnx0Dx2yLt9+NOPBoh4+juPxg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id d0d20c26 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 14 Jan 2020 01:36:12 +0000 (UTC) Date: Tue, 14 Jan 2020 02:36:05 +0100 From: Julien Lepiller To: Tobias Geerinckx-Rice Subject: Re: [bug#39127] [PATCH] fixing icecat's multimedia Message-ID: <20200114023605.70d61b0b@tachikoma.lepiller.eu> In-Reply-To: <87eew2hllb.fsf@nckx> References: <20200114015819.713f4e4f@tachikoma.lepiller.eu> <87eew2hllb.fsf@nckx> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 39127 Cc: 39127@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Le Tue, 14 Jan 2020 02:29:20 +0100, Tobias Geerinckx-Rice a =C3=A9crit : > Julien, >=20 > Thanks! For anything with =E2=80=98security=E2=80=99 *and* =E2=80=98sand= box=E2=80=99 in the name=20 > we should definitely involve IceCat upstream. >=20 > Julien Lepiller =E5=86=99=E9=81=93=EF=BC=9A > > (substitute* "browser/app/profile/icecat.js" > > (("\"security.sandbox.content.read_path_whitelist\", \"\"") > > (string-append > > "\"security.sandbox.content.read_path_whitelist\", \"" > > (%store-directory) "/\""))) =20 >=20 > When I asked bandali on IRC a few weeks(?) ago about this exact=20 > patch, they didn't sound convinced. But we were both quite unsure=20 > :-) Have things changed? Have you talked to Mark? I haven't talked to Mark, but here's how you can check: set security.sandbox.content.read_path_whitelist in about:config to an empty string (the default) and restart icecat. It cannot play the video from https://harmonist.tuxfamily.org/. It doesn't work. Set it to /gnu/store/ (with a trailing /) and restart the browser. Now the video works. This patch attempts to make the working scenario the default :) >=20 > > Since icecat has access to /lib and /usr/lib, I think we can=20 > > also give > > it read access (not write) to /gnu/store. =20 >=20 > That sounds reasonable, if you're certain that it's read-only. >=20 > > Wdyt? =20 >=20 > LGTM from the Guix side. >=20 > Kind regards, >=20 > T G-R From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 13 20:42:55 2020 Received: (at 39127) by debbugs.gnu.org; 14 Jan 2020 01:42:55 +0000 Received: from localhost ([127.0.0.1]:60504 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irBEN-0004yw-5k for submit@debbugs.gnu.org; Mon, 13 Jan 2020 20:42:55 -0500 Received: from tobias.gr ([80.241.217.52]:55392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1irBEL-0004yi-8F for 39127@debbugs.gnu.org; Mon, 13 Jan 2020 20:42:53 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id 9a2744d5; Tue, 14 Jan 2020 01:42:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=pEGKUz3qvr8zrKrdwy79/F EAlbItecSDnkKexdMiDhQ=; b=hfmvJkvfVvglyumx5jzS0KVE0dAgabD9ewE2lW KpCei+A7480sbp+UJURUCSueqhZVQcHL/RSHFdjJ19H455zl5oE5NrH+NoglqIdp VA6YaoHFEaZVi1me9LJFpOa+dP7c13eXxe1DE4yJh9tTJaNjQTW5UciPCNr6FhmK 5E1PW1loUGXJP/v/URcjTZKyx/eqPGx3TWRq89YXilE5gxJOesmfSVnMyXUxmYir hDA30Kg5GHUe1A6FyBOt9RzEKbf0BsbidlwqB85zJAASNQWiji52OSffVhVjqE5x yE1U8v4rAnyhrSgpkaYz+fMF41F5nD+Z4ES9r7bqHwTfRduQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 588fb027 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Tue, 14 Jan 2020 01:42:51 +0000 (UTC) From: Tobias Geerinckx-Rice To: Julien Lepiller Subject: Re: [bug#39127] [PATCH] fixing icecat's multimedia References: <20200114015819.713f4e4f@tachikoma.lepiller.eu> <87eew2hllb.fsf@nckx> <20200114023605.70d61b0b@tachikoma.lepiller.eu> In-reply-to: <20200114023605.70d61b0b@tachikoma.lepiller.eu> Date: Tue, 14 Jan 2020 02:42:50 +0100 Message-ID: <87d0bmhkyt.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 39127 Cc: 39127@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Julien, Julien Lepiller =E5=86=99=E9=81=93=EF=BC=9A > I haven't talked to Mark, but here's how you can check: [=E2=80=A6] I meant about any potential security issues or alternative=20 solutions (e.g. restricting access to less than the entire store). I was already aware of the problem and this work-around, and can=20 confirm that it works. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl4dHJoACgkQ2Imw8BjF STxhdxAAqg07l/9bwEpu1aRJ2KXhouPuMu13rg0Zmc7Gbk63Hkt38sUfoUhuzM+O IR3GOQOO+KQg+Dw/fKNLjMdxXpNb3Ur7G9z9tMSfn86j6278tBXFLJJXjaHKBE0J 1mF5ndHUBrzxOSPeaKtGk79dvGcU/OCmN9Z+ew++rgNCktm9p5jQ8qyBvDwH2Zea b488vQB8vAFqCL2eIaBRNTRvg9Tc0awSD/2pIE4KagRNj12kg7x3Dmr12CCmfF/x r9+58fSrXL3UkswNwg679hhkzaFr+1qWsZsfgdWz8VUg8+eMihaat8BKTd/Vebjb 0TgUJWSzSNJcGNOGunXmzMBZdy1Rld0NLruliHlvzaIJhgbzdzRmyl2ACOJJPq0v nikT3C8iJs4ZMmeq71CGDw+RnzEzruvqGfwaHF0NjJ25sKpdjKtqNJf10ptDalps Lnvkv7E9uIcFym9+MxZxpxf9SXAtnFNz/OxSRvyTJBjKoerxMg/4ktCfqS46Qs2G Ew/t5NseWGtbTO7v6vStcKpb1l/w2RqfsOHK4kVHRRi5oES7nGRSlbDqH/gF/+Hx /qqzFe93NU4xyyIBw+HkMLLfEm7VPVoOnkvrjomGEhzmfrV3ks75SA4kHnvHQoiV 6hPFHgOTJXKji5pbXsoncP2ZRTBr0oGEc0ZGBUOZuHFUIYHoMtY= =QUfI -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 16 04:04:19 2020 Received: (at 39127-done) by debbugs.gnu.org; 16 Jan 2020 09:04:19 +0000 Received: from localhost ([127.0.0.1]:36730 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1is14d-00059L-H4 for submit@debbugs.gnu.org; Thu, 16 Jan 2020 04:04:19 -0500 Received: from tobias.gr ([80.241.217.52]:59226) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1is14a-000599-EU for 39127-done@debbugs.gnu.org; Thu, 16 Jan 2020 04:04:18 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id aeca8a52 for <39127-done@debbugs.gnu.org>; Thu, 16 Jan 2020 09:04:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=XR26SThzF8Njbblbzv+NfZ osywQQxEEE7gBwwERbRbA=; b=gf25xD/+ZicyK+Ch7uUSCkBIcfpx+NjIwjOctC b+ow6dEahhtSNCLC7xasl07dOcjliVazH4MPuiTp87HB0F2aKb+iwrfXrN73wk7z McfqCHuN4iD5ZYMDhHl0J1q8sbWt1GBZCd9MJpHaO7YTcXyJ1GybUhw8IZRcy9fa VSlHWjToDimP2fJ/a4KO0PejrhRPc619uQ+q+uJnMz4xHj5jAweXsqGfQ328d64F lrxWuHaPdNOciX7Kh40c+WvSFnzRO6cCPgEqUnzt4u4IpDDagQ37J6EI7mhdfVX5 kUjG7SGM4YVcK5iLyLV2uF/2nbD+uODOOc9XFyLAlsPf8h/g== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 8f58cf3a (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <39127-done@debbugs.gnu.org>; Thu, 16 Jan 2020 09:04:14 +0000 (UTC) From: Tobias Geerinckx-Rice To: 39127-done@debbugs.gnu.org Subject: Re: [bug#39127] [PATCH] fixing icecat's multimedia References: <20200114015819.713f4e4f@tachikoma.lepiller.eu> In-reply-to: <20200114015819.713f4e4f@tachikoma.lepiller.eu> Date: Thu, 16 Jan 2020 10:04:13 +0100 Message-ID: <878sm7ai2a.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 39127-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; format=flowed Fixed by mhw[0] in commit 429c8284d232c3f9fbe3dc87a3da323f3a864c03, so closing this one. Thanks! T G-R [0]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=38831#5 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl4gJw0ACgkQ2Imw8BjF STz7lA/8CDIAGxxQfuUlKndP3E6dsSY/g/vqV/pEVAC6yw3hy/eP1A0pMX2OhXlp Qi4OonL7cysdHvv4VbiA0SF6lAAKBk+vMPqJlE+V2JVu5Ipa82WTDLn7P446Ndj/ qTC4Ft4C2OgkzZBsw1QVvi7VoOEHs/c7WmyJKfDAyX7ZcalxlxJ7uUBFQz7eID8E h5qiOPOhJ1Hx3tzogM44i4R1/jQiKQm5zzX/fCypitFPXDidoeRK7+XCod1xb1Ie T6tlS703lnF6tCWOQCOoImIq9OWYE7VhuVOHfTf2vkwbUYMAnbmtQPtve8Zd9RNp wFzZqQDj+KSIZj6vpIrlxYsP+58HSBTVaXU/qSnuANlO6nPx5HqBzSEbi1RE/mlJ /doRcyy/zkQAVSdjxbO6dURXxNDUefp4iJf5SKMVNjTkb18/j+Q1F/N/T5p2vAcV mDPW9fLn2hpiWoEGAp3RJx8sqVKEzApQ/DDkbQ72wiAVuzoMwwi06QZmssdlCOmZ yDm/RUaoGpeSZFF+joiFzzukaOAHtAJdXbl2Tg0XEQsx/wsyQoMj0qSTXF0a/iwh qZFls0XV6fO9kPGf42qTIURs3RL6ny6eO8H1hJX/0TsBdQGRa1KdC8ZNwo29mP05 7H3wv9v748b59cXjXNn/0xMjha/9BIvxeAPMzx4yTrkRghG7EDM= =f41F -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Aug 15 20:28:25 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 13 Feb 2020 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator