Quoted Text in Email

cwest on 2002-09-09T18:30:43

What do you use to quote text? Have code to show me?

Also, what do you use in your MUA to catch quoted strings? Have a regex or Emacs LISP?


quoth the emacs

Robrt on 2002-09-09T19:20:55

supercite, of course!

(setq sc-preferred-attribution-list
  (list "x-attribution" "initials" "sc-lastchoice" "firstname" "lastname"))
(setq sc-citation-leader "") ;; smaller lead space

Quoting

petdance on 2002-09-09T19:22:00

I let Mutt take care of my quoting, and before I used Mutt, I would let Eudora and/or Pine do the quoting.

As to recognizing quoted material, I use this:

set quote_regexp   = "^ *[:>]+ "
which is tweaked a bit from whatever the stock Mutt config was.

Mutt and Perl

davorg on 2002-09-10T16:45:15

Mutt takes care of most of it. And for those nastily formatted emails that have been through other email clients there's always Damian's Text::Autoformat which is invoked from vi with this entry in my .exrc.

map f !Gperl -MText::Autoformat -eautoformat

(that's taken straight from the Text::Autoformat docs - I didn't think of it myself)