in reply to Norwegian letters problem

For sure it looks like the 'quoted printable' encoding. There are perl modules for working with it: QuotedPrint. I think the Content-Type is just not correct, but I might be wrong.

Update: I've found there is another header for this: Content-Transfer-Encoding. From RFC 2045:

6.1. Content-Transfer-Encoding Syntax The Content-Transfer-Encoding field's value is a single token specifying the type of encoding, as enumerated below. Formally: encoding := "Content-Transfer-Encoding" ":" mechanism mechanism := "7bit" / "8bit" / "binary" / "quoted-printable" / "base64" / ietf-token / x-token

Replies are listed 'Best First'.
Re:Norwegian letters problem
by Anonymous Monk on Apr 30, 2003 at 15:40 UTC
    Ah, the wisdom of the monks can never seize to amaze! Thanks a lot, MIME::QuotedPrint does the trick!