* Michael Herman <[EMAIL PROTECTED]> [2002-09-04 23:02]:
> When I receive an e-mail from someone at work that is a reply to
> an earlier e-mail and I view it in the pager, where the other
> senders MUA inserted \t (tab) as the quote/attribution character,
> Mutt replaces the \t with a >.  I would like to keep the \t
> instead.  I have played with indent_string and quote_regexp.

* darren chamberlain <[EMAIL PROTECTED]> [2002-09-05 15:37]:
> Look at display_filter, section 6.3.36 in the manual
> (<http://www.mutt.org/doc/manual/manual-6.html#display_filter>).
> Set it to a script that does something like:
>   cat | sed -e "s/^\t/> /g"

uh.  UUCA.

if using "sed" then stuff all the changes into
a file and let sed use for the filtering:

  $ grep display_filter ~/.muttrc
  set display_filter="/path/sed -f mutt.sed"

  $ cat mutt.sed
  s/^\t/> /

if your sed does not understand "\t"
then use a literal one.  hope this helps..

Sven

-- 
Sven Guckes   [EMAIL PROTECTED]
UUCA http://www.iki.fi/~era/unix/award.html
UUCA Awards for the "Useless Use of cat,
UUCA echo, kill, ls, test, wc or backticks"

Reply via email to