From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 03 May 2020 08:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 41041@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158849359817865 (code B ref -1); Sun, 03 May 2020 08:14:02 +0000 Received: (at submit) by debbugs.gnu.org; 3 May 2020 08:13:18 +0000 Received: from localhost ([127.0.0.1]:54601 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jV9kT-0004e5-Sr for submit@debbugs.gnu.org; Sun, 03 May 2020 04:13:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:57774) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jV9kS-0004dy-Qr for submit@debbugs.gnu.org; Sun, 03 May 2020 04:13:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52564) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jV9kS-0004Cr-JN for guix-patches@gnu.org; Sun, 03 May 2020 04:13:16 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:36323) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jV9kR-0008C5-5Y for guix-patches@gnu.org; Sun, 03 May 2020 04:13:16 -0400 X-Originating-IP: 78.199.129.170 Received: from localhost.localdomain (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 9D0DF4000B for ; Sun, 3 May 2020 08:13:09 +0000 (UTC) From: Pierre Neidhardt Date: Sun, 3 May 2020 10:12:58 +0200 Message-Id: <20200503081258.21873-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.194; envelope-from=mail@ambrevar.xyz; helo=relay2-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/03 03:37:13 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_PASS=-0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -0.9 (/) 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: -2.1 (--) * doc/guix.texi (Invoking `guix environment'): Add paragraph and example to run Eolie in a guix environment container. Add `container' cindex for the first container example, and the `certificates' cindex for the web browser example. --- doc/guix.texi | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/doc/guix.texi b/doc/guix.texi index d5d8662937..3c31386036 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -4786,6 +4786,7 @@ additionally includes Git and strace: guix environment --pure guix --ad-hoc git strace @end example +@cindex container Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to @@ -4802,6 +4803,23 @@ guix environment --ad-hoc --container guile -- guile The @code{--container} option requires Linux-libre 3.19 or newer. @end quotation +@cindex certificates +Another typical use case for containers is to run security-sensitive +applications such as a web browser. To run Eolie, we must expose and +share some files and directories; we include @code{nss-certs} and expose +@file{/etc/sll/certs/} for HTTPS authentication; finally we use +@code{env} from the @code{coreutils} package to set the @code{DISPLAY} +environment variable since containerized graphical applications won't +display without it. + +@example +guix environment --container --network --expose=/etc/machine-id \ + --expose=/etc/ssl/certs/ \ + --share=$HOME/.local/share/eolie/=$HOME/.local/share/eolie/ \ + --ad-hoc eolie coreutils nss-certs dbus -- \ + env DISPLAY=$DISPLAY eolie +@end example + The available options are summarized below. @table @code -- 2.25.1 From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 May 2020 07:43:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 41041@debbugs.gnu.org Received: via spool by 41041-submit@debbugs.gnu.org id=B41041.158883736926858 (code B ref 41041); Thu, 07 May 2020 07:43:02 +0000 Received: (at 41041) by debbugs.gnu.org; 7 May 2020 07:42:49 +0000 Received: from localhost ([127.0.0.1]:41946 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbBA-0006z7-MN for submit@debbugs.gnu.org; Thu, 07 May 2020 03:42:48 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36676) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbB7-0006yq-OL for 41041@debbugs.gnu.org; Thu, 07 May 2020 03:42:47 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:45975) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jWbB1-0006ux-Jd; Thu, 07 May 2020 03:42:39 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=35660 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jWbB0-00032R-3M; Thu, 07 May 2020 03:42:38 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200503081258.21873-1-mail@ambrevar.xyz> Date: Thu, 07 May 2020 09:42:35 +0200 In-Reply-To: <20200503081258.21873-1-mail@ambrevar.xyz> (Pierre Neidhardt's message of "Sun, 3 May 2020 10:12:58 +0200") Message-ID: <87zhakdwd0.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.4 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.6 (/) Hi, Pierre Neidhardt skribis: > * doc/guix.texi (Invoking `guix environment'): Add paragraph and example = to > run Eolie in a guix environment container. Add `container' cindex for = the > first container example, and the `certificates' cindex for the web brow= ser > example. Good idea! > +@example > +guix environment --container --network --expose=3D/etc/machine-id \ > + --expose=3D/etc/ssl/certs/ \ > + --share=3D$HOME/.local/share/eolie/=3D$HOME/.local/share/eolie/ \ > + --ad-hoc eolie coreutils nss-certs dbus -- \ > + env DISPLAY=3D$DISPLAY eolie Instead of =E2=80=98env=E2=80=99, you can preserve the =E2=80=98DISPLAY=E2= =80=99 variable with: guix environment -E ^DISPLAY$ =E2=80=A6 which in turn allows you to remove =E2=80=98coreutils=E2=80=99, maybe. Otherwise LGTM! Thanks, Ludo=E2=80=99. From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 May 2020 07:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 41041@debbugs.gnu.org Received: via spool by 41041-submit@debbugs.gnu.org id=B41041.158883768227627 (code B ref 41041); Thu, 07 May 2020 07:49:02 +0000 Received: (at 41041) by debbugs.gnu.org; 7 May 2020 07:48:02 +0000 Received: from localhost ([127.0.0.1]:41954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbGE-0007BV-Ie for submit@debbugs.gnu.org; Thu, 07 May 2020 03:48:02 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:63631) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbGD-0007Ai-Mw for 41041@debbugs.gnu.org; Thu, 07 May 2020 03:48:02 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id B16E940004; Thu, 7 May 2020 07:47:54 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87zhakdwd0.fsf@gnu.org> References: <20200503081258.21873-1-mail@ambrevar.xyz> <87zhakdwd0.fsf@gnu.org> Date: Thu, 07 May 2020 09:47:53 +0200 Message-ID: <87tv0stcd2.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Ludovic =?UTF-8?Q?Court=C3=A8s?= writes: > Instead of =?UTF-8?Q?=E2=80=98env=E2=80=99,?= you can preserve the =?UTF-8?Q?=E2=80=98DISPLAY=E2=80=99?= variable with: > > guix environment -E ^DISPLAY$ =?UTF-8?Q?=E2=80=A6?= > > which in turn allows you to remove =?UTF-8?Q?=E2=80=98coreutils=E2=80=99,?= maybe. Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Ludovic =?UTF-8?Q?Court=C3=A8s?= writes: > Instead of =?UTF-8?Q?=E2=80=98env=E2=80=99,?= you can preserve the =?UTF-8?Q?=E2=80=98DISPLAY=E2=80=99?= variable with: > > guix environment -E ^DISPLAY$ =?UTF-8?Q?=E2=80=A6?= > > which in turn allows you to remove =?UTF-8?Q?=E2=80=98coreutils=E2=80=99,?= maybe. Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: gnu.org] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s writes: > Instead of =E2=80=98env=E2=80=99, you can preserve the =E2=80=98DISPLAY= =E2=80=99 variable with: > > guix environment -E ^DISPLAY$ =E2=80=A6 > > which in turn allows you to remove =E2=80=98coreutils=E2=80=99, maybe. Good tip, thanks! It's strange that I've seen this "coreutils + env" trick so many times around. I guess we really lacked examples like this one :) =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl6zvSkACgkQm9z0l6S7 zH88aAgAiT4e/nxZOrDY9YhsBLtQu1h3tnV8iFqPGOoOfoQ6ombAK5ddpt1gZ6Lp LYE4k58xlIMHZh+lXaCVkHNA6eLLiI5sOptgA7LZzSEkMAg750W0C91FiUeAvUjp XWZ+JchWhPeekpZk76DDwRm2qcjn2Oc63311/FHlGRorrKtH1pUHBiK3HHnig2oA GmdMcAQ97GqyXJ4wR2yiu+/bfPTFhne61BwD59TyVAya71CtouZfq9iJrtOZZ38g 7ss4GraOTSKhMM8Ucwpc35gkKMq/ACDIcfM3NsIQoEI2LWZ40Q3mWfVKUgM22ZY7 9+8JvfuUR60dZh8rurx0KTM485sz8g== =3cLu -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Caleb Ristvedt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 May 2020 08:03:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 41041@debbugs.gnu.org Received: via spool by 41041-submit@debbugs.gnu.org id=B41041.158883856829847 (code B ref 41041); Thu, 07 May 2020 08:03:02 +0000 Received: (at 41041) by debbugs.gnu.org; 7 May 2020 08:02:48 +0000 Received: from localhost ([127.0.0.1]:41976 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbUV-0007lK-K7 for submit@debbugs.gnu.org; Thu, 07 May 2020 04:02:47 -0400 Received: from mail-qt1-f194.google.com ([209.85.160.194]:38317) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbUT-0007kx-75 for 41041@debbugs.gnu.org; Thu, 07 May 2020 04:02:45 -0400 Received: by mail-qt1-f194.google.com with SMTP id i68so3964100qtb.5 for <41041@debbugs.gnu.org>; Thu, 07 May 2020 01:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cune-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=FJQG8WRKogaag5wWM/T5bB1QxpmgYp+fSZtqFk1CYL8=; b=kIbAOCkbxUSFNrHnNrcTVAXQh3EUrgb1U8ERxgIs9n087MZ5o1pdtTMF9omEZN/i0e 7yrl3yiTU3Gj7sUmmqdca496X6x14Azb48dqTLPRp0nomlfESqVLYekngiqADF+RyIgw uiy4hym9OS4ZhFWdqxOhxNG7Ox845Al/5bGTw2Zzd8tYT+8avFzkoE2MME1ljZkCAM+Z pdCXvB/IjDluwUuAKv9MFxAX6fnUI26SP7AnrSRrsnMPIogYnZV8o4LaMfzDrEVYDDJc zLXAIxIUDOyr2qgsWxhWxREwwI05sszCrLyBcxzbasvZ9n6PVyW8djY8Hb7PT3ZrwCeZ y1tA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=FJQG8WRKogaag5wWM/T5bB1QxpmgYp+fSZtqFk1CYL8=; b=juyrh34d2WtQnfRY1VA7AWAMdVbAH0hu9b7GAS+5awAGWyHgHDBhM+beQY6ev9+snq UALKH0b7I7veUCXBCKqKNqvcx6cMkCN9N8md4m3GJxo7XvoTVf/Yj9uJoopsr4rXMSzY v13Lx1RPNaL7piL9FnbPIwWYB00CBdUMWoqQZZGgrU6J6ZSXOQlW2GZh4/6Ru66UNkwa qdxvcEgfV6/Oh8+iEuhL8NRiVMKHdjKhts7WQWVVZN2cp9Xx03T93CgdhkCAVkqRM8Yr cFnCPnOnayvu/34Hfj4nbXIlXMGlmJM6TLnFOiw4WQGG7PUCocog6EqQbuZSQFJZbX5V VR0w== X-Gm-Message-State: AGi0PuaazXRlKdtvx2iUncF1coVk3BX3BrIMFXh/UF3FhXc9zg+5bO1y 2uX2B77gDfavkUWX6nYecbD4UZHjjRk= X-Google-Smtp-Source: APiQypLqPCxdJp6GuWbg8wJ0HTDm3vsLqW/hQ4ocw8o7w4HofYpT4Stv6ai5hcjMtv9tHIpyckIH1w== X-Received: by 2002:aed:2dc1:: with SMTP id i59mr12714593qtd.209.1588838559239; Thu, 07 May 2020 01:02:39 -0700 (PDT) Received: from GuixPotato ([208.89.170.24]) by smtp.gmail.com with ESMTPSA id k128sm3763066qke.125.2020.05.07.01.02.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 07 May 2020 01:02:38 -0700 (PDT) From: Caleb Ristvedt References: <20200503081258.21873-1-mail@ambrevar.xyz> Date: Thu, 07 May 2020 03:02:27 -0500 In-Reply-To: <20200503081258.21873-1-mail@ambrevar.xyz> (Pierre Neidhardt's message of "Sun, 3 May 2020 10:12:58 +0200") Message-ID: <87d07gqijw.fsf@cune.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Pierre Neidhardt writes: > +share some files and directories; we include @code{nss-certs} and expose > +@file{/etc/sll/certs/} for HTTPS authentication; finally we use Typo: sll --> ssl Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.194 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.194 listed in wl.mailspike.net] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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.7 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Pierre Neidhardt writes: > +share some files and directories; we include @code{nss-certs} and expose > +@file{/etc/sll/certs/} for HTTPS authentication; finally we use Typo: sll --> ssl Content analysis details: (1.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.194 listed in wl.mailspike.net] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders --=-=-= Content-Type: text/plain Pierre Neidhardt writes: > +share some files and directories; we include @code{nss-certs} and expose > +@file{/etc/sll/certs/} for HTTPS authentication; finally we use Typo: sll --> ssl - reepca --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdNapMPRLm4SepVYGwWaqSV9/GJwFAl6zwJQACgkQwWaqSV9/ GJxHRggAjgOI6FgcBlJlsS+y8U7a5hGmB4i/oQ+qjTaQHcfC4sh8arp6Cr/Ik/0b 2W4oTRlz0pjOKnHI2T0KwQtl+75EmacprioiI3Jlbpy9AFQNlWx0sLgTmip7MnEY I4mxwZHbnVQDu9Sq2aR5YSrME7H7CAFV7AP4JLBiZmEUVVSD7euWQMjfpCc/3z8A zQTnL4B0aLo7/x6q8RbHz4oeroFV5/l3n/AahU6FKXWP17IF145DRxxG265+VxBb 849/Kfe+bcAIpD89N5GnhXbDCVC78umkcrX2z2th0aTsVTtahjTpJK3/WYxWdH6f t/cFdYH6GLCb3ignv6dKnWI1XlbqNw== =7yJ/ -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 May 2020 08:06:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 41041@debbugs.gnu.org Received: via spool by 41041-submit@debbugs.gnu.org id=B41041.158883871730220 (code B ref 41041); Thu, 07 May 2020 08:06:01 +0000 Received: (at 41041) by debbugs.gnu.org; 7 May 2020 08:05:17 +0000 Received: from localhost ([127.0.0.1]:41980 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbWv-0007rM-2i for submit@debbugs.gnu.org; Thu, 07 May 2020 04:05:17 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:43703) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbWt-0007r4-Vx for 41041@debbugs.gnu.org; Thu, 07 May 2020 04:05:16 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 46B49E0045; Thu, 7 May 2020 08:05:07 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87tv0stcd2.fsf@ambrevar.xyz> References: <20200503081258.21873-1-mail@ambrevar.xyz> <87zhakdwd0.fsf@gnu.org> <87tv0stcd2.fsf@ambrevar.xyz> Date: Thu, 07 May 2020 10:05:04 +0200 Message-ID: <87o8r0tbkf.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Merged with 60131df02b521235a311031f9410f530ded60f33. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.196 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.196 listed in wl.mailspike.net] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Merged with 60131df02b521235a311031f9410f530ded60f33. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.196 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.196 listed in wl.mailspike.net] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Merged with 60131df02b521235a311031f9410f530ded60f33. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl6zwTAACgkQm9z0l6S7 zH/qOgf/fPXCOfuZOAg87Mtw2Ix8s81BAfffXiU9esQT0JD/M1AuYCEoH5oPSfa3 Bd7UfQ/4sxIQZPY/EGGmM2NhbmgiS0cc1rl3fLHEbV79gwKEMfH79KgD5LLqmwAV acrsdKF6/ClL2q1LoNFlos4q1pHJuvWTqT2mqa51ckDVdMpERcy08p/oPT2ize0V l0nS8A+aFFIPSw/5ilsZQPueM1rTvVwBcRW8JBbaY6HYyaiFG4EXcfr/S2JfgGKp 8Sl7SmwoNcdmJlspTo3C7p7aWuRKSffYT7d9+39cLEU18PVdEoGmpiCxDMW108hR fj9VNv8woms999P2GMoEmQUVCGc2Dg== =4009 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu May 07 04:05:46 2020 Received: (at control) by debbugs.gnu.org; 7 May 2020 08:05:46 +0000 Received: from localhost ([127.0.0.1]:41986 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbXO-0007sp-JB for submit@debbugs.gnu.org; Thu, 07 May 2020 04:05:46 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:59969) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWbXN-0007sU-Gh for control@debbugs.gnu.org; Thu, 07 May 2020 04:05:45 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 50D3EE0045 for ; Thu, 7 May 2020 08:05:38 +0000 (UTC) Date: Thu, 07 May 2020 10:05:37 +0200 Message-Id: <87mu6ktbji.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #41041 X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.3 (-) close 41041 quit From unknown Mon Aug 18 04:43:09 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#41041] [PATCH] doc: Add container example to run a web browser. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 May 2020 08:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 41041 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Caleb Ristvedt Cc: 41041@debbugs.gnu.org Received: via spool by 41041-submit@debbugs.gnu.org id=B41041.158884075410975 (code B ref 41041); Thu, 07 May 2020 08:40:02 +0000 Received: (at 41041) by debbugs.gnu.org; 7 May 2020 08:39:14 +0000 Received: from localhost ([127.0.0.1]:42036 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWc3l-0002qx-Qv for submit@debbugs.gnu.org; Thu, 07 May 2020 04:39:13 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:54925) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWc3j-0002qi-Qy for 41041@debbugs.gnu.org; Thu, 07 May 2020 04:39:12 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 134321BF24D; Thu, 7 May 2020 08:38:04 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <87d07gqijw.fsf@cune.org> References: <20200503081258.21873-1-mail@ambrevar.xyz> <87d07gqijw.fsf@cune.org> Date: Thu, 07 May 2020 10:38:03 +0200 Message-ID: <87k11ota1g.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Good catch! I've just fixed it. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.201 listed in list.dnswl.org] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD 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: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Good catch! I've just fixed it. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.201 listed in list.dnswl.org] 0.1 URIBL_SBL_A Contains URL's A record listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] 0.6 URIBL_SBL Contains an URL's NS IP listed in the Spamhaus SBL blocklist [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.4 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Good catch! I've just fixed it. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl6zyOsACgkQm9z0l6S7 zH/itAf+MAHaelQX65DgAeXV1D2GxpYJBN2XjA7Akhb/E7vCVS4fzHxUgDackxCs VRbygq64EKvSLWUPo5Dw9QWX3O06n/wRbUAlah87BbZ2+07iWSpTP6Kn2fKp7sNI gGL7aQKI29XESmXl9Ww0HTAGoeaYIxBrILRc9qlYtKRZhvEIbrNYCtum4HVgYV2T Mg5bCCq1xhbXjlnqDFrV8mZ5Tmln7lkcBbRjEatZ9Wgwpb+4xwQYujF1JD8PV6/P hlSsH+Z/88NrO/gb+hP0tIIpREBaGMck7NMWwY08+r1uIj2G1nWL8+kmXST7rFhP gBJN5vIYAG3pV1N2laowZaLz7u3feQ== =gXf4 -----END PGP SIGNATURE----- --=-=-=--