From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 14654 invoked from network); 7 Feb 2022 23:24:44 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 7 Feb 2022 23:24:44 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nHDNB-00B0Is-Qf for ml@inbox.vuxu.org; Mon, 07 Feb 2022 17:24:41 -0600 Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.94.2) (envelope-from ) id 1nHDNB-0041oo-7q for ml@inbox.vuxu.org; Mon, 07 Feb 2022 17:24:41 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.94.2) (envelope-from ) id 1nHDN8-0041of-Rb for ding@lists.math.uh.edu; Mon, 07 Feb 2022 17:24:38 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nHDN6-00B0IX-6P for ding@lists.math.uh.edu; Mon, 07 Feb 2022 17:24:38 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From: Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=P5Dym0smKdUK3bkMsLoXIzHwqQhdLB6iLHcfoKy/ngU=; b=AOLZEtvKauS4BE4Z3Xl1+tb0py o4dwXHvv3j/QaSNr3RWlOmwd9UF5Hpw5Eqb0S4qjhKiLc0o4alZQ2cZ7zOf517WTAnykJ5Y8GUjbf NJ+XatWtt/x+BALGO41gHUIBZGQ9O18yI8PR9clCqNtHpjRmmuGxnYSc5vqWj/TpoRo4=; Received: from [146.115.108.149] (helo=lanconius.mirror.to) by quimby.gnus.org with esmtp (Exim 4.92) (envelope-from ) id 1nHDMw-0006DQ-QB for ding@gnus.org; Tue, 08 Feb 2022 00:24:31 +0100 Received: by lanconius.mirror.to (Postfix, from userid 1269) id A76BF4057E; Mon, 7 Feb 2022 18:24:24 -0500 (EST) From: akb+lists.ding@mirror.to (Andrew) To: ding@gnus.org Subject: rendering in text, how to stop web trackers Date: Mon, 07 Feb 2022 18:24:24 -0500 Message-ID: <0qmtj2mf9z.fsf@mirror.to> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain List-ID: Precedence: bulk I generally use gnus in a terminal emulator (emacs -nw). I'm getting more and more HTML only mail, but I really prefer straight monochrome text. My ideal behavior is: if there's a text part to a message, show that if there's only html, show that but (in order to stop tracking) do not load anything from the net and if there are URLs/images in the message, give me an easy way to view, copy & paste the URL I've got html as a discouraged alternative: (setq mm-discouraged-alternatives '("text/html" "text/richtext")) I'm rendering with w3m: (setq mm-inline-text-html-renderer 'mm-inline-text-html-render-with-w3m) (setq mm-text-html-renderer 'gnus-w3m) How do I tell w3m to not fetch anything and just render what came in the message? Or should I use shr or something else to render? --thanks for any clues --a