From: Rocco Rutte Date: Wed, 5 Sep 2007 07:07:00 +0000 (+0000) Subject: Manual: make sure contents in shorter than 80 chars X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eccdb2f3d032ceaf659fcce60e73d75fa80a8993;p=neomutt Manual: make sure contents in shorter than 80 chars Otherwise conversion to plain text may cause line breaks rendering examples syntacially invalid (closes #2185). --- diff --git a/doc/manual.xml.head b/doc/manual.xml.head index f87d62958..60f1827de 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -5092,8 +5092,8 @@ information, notably the type, encoding and description. Attachments appear as follows: -- 1 [text/plain, 7bit, 1K] /tmp/mutt-euler-8082-0 <no description> - 2 [applica/x-gunzip, base64, 422K] ~/src/mutt-0.85.tar.gz <no description> +- 1 [text/plain, 7bit, 1K] /tmp/mutt-euler-8082-0 <no description> + 2 [applica/x-gunzip, base64, 422K] ~/src/mutt-0.85.tar.gz <no description> @@ -5176,16 +5176,34 @@ use this format include Netscape, XMosaic, lynx and metamail. In order to handle various MIME types that Mutt can not handle internally, Mutt parses a series of external configuration files to -find an external handler. The default search string for these files -is a colon delimited list set to +find an external handler. The default search string for these files +is a colon delimited list containing the following files: - -${HOME}/.mailcap:/usr/local/share/mutt/mailcap:/etc/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap - + +$HOME/.mailcap +$PKGDATADIR/mailcap +$SYSCONFDIR/mailcap +/etc/mailcap +/usr/etc/mailcap +/usr/local/etc/mailcap + + +where $HOME is your home directory. The +$PKGDATADIR and the +$SYSCONFDIR directories depend on where mutt +is installed: the former is the default for shared data, the +latter for system configuration files. + -where $HOME is your home directory. + +The default search path can be obtained by running the following +command: + +mutt -nF /dev/null -Q mailcap_path + + In particular, the metamail distribution will install a mailcap file, usually as /usr/local/etc/mailcap, which contains some baseline @@ -5677,7 +5695,8 @@ content-types that you wish to view automatically. For instance, if you set auto_view to: -auto_view text/html application/x-gunzip application/postscript image/gif application/x-tar-gz +auto_view text/html application/x-gunzip \ + application/postscript image/gif application/x-tar-gz @@ -5688,7 +5707,8 @@ attachments of these types. text/html; lynx -dump %s; copiousoutput; nametemplate=%s.html -image/*; anytopnm %s | pnmscale -xsize 80 -ysize 50 | ppmtopgm | pgmtopbm | pbmtoascii ; copiousoutput +image/*; anytopnm %s | pnmscale -xsize 80 -ysize 50 | ppmtopgm | \ + pgmtopbm | pbmtoascii ; copiousoutput application/x-gunzip; gzcat; copiousoutput application/x-tar-gz; gunzip -c %s | tar -tf - ; copiousoutput application/postscript; ps2ascii %s; copiousoutput