Hi, * Marco Fioretti [05/13/02 13:33:16 CEST] wrote: > I haven't been able yet to use w3m (or any other text > browser for that matter) work cleanly as a Mutt pager. I > want to read HTML email as text, but with text corresponding > to hyperlinks "active" so that clicking it, or with some > keystroke, I can open an external browser directly on the > underlying URL, like this:
This is just an idea, but mutt sends the message to $display_filter and then views it in your pager. So, maybe using 'sed' as display_filter (just skipping the header and everything else until <html>) and w3m as pager works. If the mail is plain text (no html) you could let a script as $display_filter print to stdout: <html><head><title></title><body><pre> ... original text </pre></body></html> ...which would could be viewed with w3m as your pager. HTH, Cheers, Rocco.