Re: UTF-8 conversion
Ralph Corderoy <[email protected]> Sat, 15 Feb 2025 13:59:05 +0000
| Newsgroups | gmane.mail.nmh.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi hymie, > Subject: =?utf-8?Q?We=20are=20down=20to=20the=20wire.?= > From: Team PrezCon <[email protected]> > Reply-To: =?utf-8?Q?Team=20PrezCon?= <[email protected]> ... > Is there something in the NMH configuration that I can do get rid of > the cruft and just grab the name and subject? It looks like you're using decoding when viewing an email but not when replying. This should give some clues; see repl(1), and mh-format(5). $ cat 1 Subject: =?utf-8?Q?We=20are=20down=20to=20the=20wire.?= From: Team PrezCon <[email protected]> Reply-To: =?utf-8?Q?Team=20PrezCon?= <[email protected]> $ $ mhshow +. 1 from: Team PrezCon <[email protected]> subject: We are down to the wire. $ $ cat fmt %<{from}To: %(decode {from})\n%>\ %<{subject}Subject: Re: %(decode {subject})\n%>\ FIXME $ $ repl -form fmt -editor cat 1 To: Team PrezCon <[email protected]> Subject: Re: We are down to the wire. FIXME What now? q -d $ -- Cheers, Ralph.