Re: how to decode mime encoded subjects?

2001-12-12 Thread Andy Spiegl
The encoded format is called quoted-printable, and there should be utilities for it. I've seen algorithms in Perl for it, as well as native functions in PHP (though it'd be a little hackish to use a PHP shell script). Just search for 'quoted-printable decode' and I'm sure something will

Re: how to decode mime encoded subjects?

2001-12-12 Thread Magnus Bodin
On Wed, Dec 12, 2001 at 01:18:59AM -0500, Justin R. Miller wrote: Thus spake Andy Spiegl ([EMAIL PROTECTED]): Is there a unix tool (or another method) to convert something like this Subject: Para =?iso-8859-1?Q?Jos=E9_Carlos_Lavalle_?= into this Subject: Para José Carlos Lavalle

Re: how to decode mime encoded subjects?

2001-12-12 Thread Andy Spiegl
Note that it is not always encoded with the QP-algorithm. The other alternative, Base64-encoding is very common nowadays. Especially in subject-lines. My little program decodes QP and Base64. Andy. -- Dr. Andy Spiegl, Radio Marañón, Jaén, Perú E-Mail: [EMAIL PROTECTED], [EMAIL PROTECTED]

how to decode mime encoded subjects?

2001-12-11 Thread Andy Spiegl
Hi, Mutters! Hm, I didn't get an answer from anyone so I dare ask again: Is there a unix tool (or another method) to convert something like this Subject: Para =?iso-8859-1?Q?Jos=E9_Carlos_Lavalle_?= into this Subject: Para José Carlos Lavalle The reason I need this is that I use procmail to

Re: how to decode mime encoded subjects?

2001-12-11 Thread Justin R. Miller
Thus spake Andy Spiegl ([EMAIL PROTECTED]): Is there a unix tool (or another method) to convert something like this Subject: Para =?iso-8859-1?Q?Jos=E9_Carlos_Lavalle_?= into this Subject: Para José Carlos Lavalle The encoded format is called quoted-printable, and there should be