Pedro Alves wrote: > Hello. Is it possible to configure mutt to automatically lunch the external > viewer defined in mailcap inside the mutt window? For instance, lunch w3m > or lynx when the type is text/html without having to see > [-- text/html is unsupported (use 'v' to view this part) --])] ?
Sure. In your muttrc: auto_view text/html # for multipart alternatives, text/plain is prefered alternative_order text/plain text/enriched text/html And in your mailcap: text/html; lynx -dump -force-html %s ; copiousoutput Note the copiousoutput option. -- Cedric
