From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Torsten Mueller Newsgroups: gmane.emacs.help Subject: Re: Moving from Thunderbird to Emacs for mail and calendar Date: Wed, 09 Sep 2009 14:40:31 +0200 Message-ID: References: <4AA6E9D5.9050800@chaosphere.com> <87ljkou8r3.fsf@bzg.ath.cx> Reply-To: Urlicht@gmx.net NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1252503911 8106 80.91.229.12 (9 Sep 2009 13:45:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Sep 2009 13:45:11 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 09 15:45:04 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MlNTl-00084f-94 for geh-help-gnu-emacs@m.gmane.org; Wed, 09 Sep 2009 15:45:02 +0200 Original-Received: from localhost ([127.0.0.1]:45112 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MlNTi-000237-2J for geh-help-gnu-emacs@m.gmane.org; Wed, 09 Sep 2009 09:44:54 -0400 Original-Path: news.stanford.edu!usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 45 Original-X-Trace: individual.net l9BWPu6DU5FHVEeisTYcjwtOkZHYCWP54UrNR4JlweUpO5Z3E= Cancel-Lock: sha1:Cx2etKWuPSrymzR2Y/GMoNoChXM= sha1:9kco925D3ldsN7koLCXuRrVJl6A= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (windows-nt) Original-Xref: news.stanford.edu gnu.emacs.help:172854 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:67993 Archived-At: Andreas Politz wrote: > > > Yes, especially if it can use the w3m text browser + emacs-w3m > > > to render the messages. w3m would need to be installed > > > separately, but I don't know if it works on Windows. > > > > It does, very well. > > Is there are binary to be found somewhere ? http://ftp.uni-erlangen.de/pub/pc/gnuwin32/cygwin/mirrors/cygnus/release/w3m/w3m-0.5.1-2.tar.bz2 This binary is compiled for cygwin but the package is standalone. This means it contains all the required dlls. You will not have to install a complete cygwin environment. Just unpack and run w3m.exe. For use with emacs you will need to install the emacs-w3m package. You will have to configure some things in .emacs: 1. The path to the binary: (setq w3m-command "c:/usr/local/w3m-0.5.1-2/bin/w3m.exe") 2. The load-path to the lisp directory: (setq load-path (append load-path '("c:/usr/local/emacs-22.2.1/site-lisp/w3m/lisp"))) 3. Load the w3m lisp module: (load-library "w3m.elc") Note: This line in a .emacs will slow down the startup process dramatically. Perhaps it's a better way to put this into a function ("load-w3m" or similar) and call this on demand (M-x load-w3m). 4. And if you use Gnus - set w3m to render your HTML mails: (setq mm-text-html-renderer 'w3m mm-inline-text-html-with-images t mm-inline-large-images t ) If everthing goes well you can just type M-x w3m for browsing www. T.M.