From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id GCMICMxmY193GAAA0tVLHw (envelope-from ) for ; Thu, 17 Sep 2020 13:38:20 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id MJniA8xmY19kDwAA1q6Kng (envelope-from ) for ; Thu, 17 Sep 2020 13:38:20 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 389A294062F for ; Thu, 17 Sep 2020 13:38:16 +0000 (UTC) Received: from localhost ([::1]:53356 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kIu74-0002Vu-0N for larch@yhetil.org; Thu, 17 Sep 2020 09:38:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51562) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kItnx-00085F-JS for help-guix@gnu.org; Thu, 17 Sep 2020 09:18:29 -0400 Received: from mail-40135.protonmail.ch ([185.70.40.135]:49767) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kItnu-0002cI-Sh for help-guix@gnu.org; Thu, 17 Sep 2020 09:18:29 -0400 Date: Thu, 17 Sep 2020 13:18:19 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1600348704; bh=b2ob9LOT6ROcA8Pbpm1fdEizz97B6McsUXB0+rFjjL0=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=ZLhnoBrIifiBK7IekLb6/RLG8m80mCRcOCMO8RjCblUuWQlAh76CBRoKIt/T1pC6I 9DEFkyKcc2ZOjTGlwV1iJOHYEe/aZkuBqzlrlX6FiYRC1UE3syJp18stsEqWF9Bfkr zWqCfqSTplumNgHqT6ZQMM1TOZHKkqe15Fmy7ZI0= To: Julien Lepiller From: Rasa Gulla Cc: Rasa Gulla via Subject: Re: Tor Message-ID: In-Reply-To: <38C631A9-8CBE-4A0D-96D9-22428C1B980C@lepiller.eu> References: <38C631A9-8CBE-4A0D-96D9-22428C1B980C@lepiller.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.135; envelope-from=rasagulla@protonmail.com; helo=mail-40135.protonmail.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/17 09:18:24 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Thu, 17 Sep 2020 09:37:38 -0400 X-BeenThere: help-guix@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Rasa Gulla Errors-To: help-guix-bounces+larch=yhetil.org@gnu.org Sender: "Help-Guix" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=pass header.d=protonmail.com header.s=protonmail header.b=ZLhnoBrI; dmarc=pass (policy=quarantine) header.from=protonmail.com; spf=pass (aspmx1.migadu.com: domain of help-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=help-guix-bounces@gnu.org X-Spam-Score: -1.71 X-TUID: Ady9b/TQJKkR Hi > To enable tor in the Guix System, you must ferst modify your configuratio= n to add a tor-service-type, see the manual for more explanations: https://= guix.gnu.org/manual/devel/en/html_node/Networking-Services.html#Networking-= Service > > The service is already enabled ard running if you selected it during inst= allation. Otherwise, edit your /etc/config.scm to add it, and run "guix sys= tem reconfigure /etc/config.scm" to enable the new service. > > Once the tor service is running, point your applications to it by configu= ring them to use the socksv5 proxy on localhost, port 9050. For icecat that= 's in the network settings, proxy settings. You should also check "proxy DN= S queries through socksv5" (or similar) to prevent leaks. You can alse use = torsocks for applications that don't support socksv5 directly. Thank you.