> AFAIK this problem is still unsolved. I only found a hack in the FAQ:
 > 
 >     Subject: 05.16 How can I convert quoted-printable to 8bit in
 >                    quoted text in replies?
 >     From: Jarle F. Greipsland <jarle at idt.unit.no>
 >     Date: 22 Aug 1995 10:42:07 +0200

wow.  below you'll find a less convoluted hack.  i seem to be using
it a LOT lately.  perhaps it should be folded into the faq.

steve
--

#!/bin/bash

repl -filter /dev/null -nodraftfolder -nowhatnowproc $*
(cat ~/Mail/draft; echo -e "\n > ---- Original Message ----" ; \
  mhshow cur -type text -nopause -nomoreproc \
    | egrep -v '^Return-Path|^Delivery-Date|^part[ ]+text/plain' \
    | egrep -v '^X-|^MIME' \
    | sed 's/^/ > /' \
  )  > ~/Mail/drafts/999
comp -use -draftfolder drafts -draftmessage 999
rm -f ~/Mail/draft
rm -f ~/Mail/drafts/999


_______________________________________________
Nmh-workers mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/nmh-workers

Reply via email to