Corinna Vinschen wrote: > I must admit that I don't quite understand why that happens, but > when I save your patch into a file, all '=' characters are converted > into a '=3D' sequence. This is a bit weird given that you're using > us-ascii encoding. Does anybody know why this happens?
That's because of: > Content-Transfer-Encoding: quoted-printable ..but your email client should undo the encoding if you tell it to save the message as a file. Otherwise: perl -MMIME::QuotedPrint -ne 'print decode_qp($_)' <in >out > The patch is also broken due to unexpected line breaks, see above. That's always a pain... attachments are really the way to go. Brian
