On Wed, May 31, 2000 at 06:51:47PM +0200, Jan Houtsma wrote: > I added the following in /etc/mailcap: > > application/msword; word2x %s > > But mutt still says: > > mailcap entry for type application/msword not found > > How do i do this? > > Thanks, > jan Never mind. I figured it out myself, but dont know why it didnt work as before. If i add '; copiousoutput' then it works, but i thought that was optional. Now i can finally view word documents in my mutt and it looks great!! mailcap: application/msword; word2html %s; copiousoutput word2html: #!/bin/zsh f=/tmp/word2html.$$.html wvHtml $1 2>/dev/null >$f lynx -dump $f rm -f $f