But in the Pike code of MIME.pmod we have:
if (headers["content-transfer-encoding"]) { array(string) arr=tokenize(headers["content-transfer-encoding"]); if (sizeof(arr)!=1 || !stringp(arr[0])) throw (({ "invalid Content-Transfer-Encoding in message\n", backtrace() })); transfer_encoding = lower_case(arr[0]); }
Ok I was wrong since headers["content-transfer-encoding"] contains the the real encoding like "8bit" or "base64". Anyway I don't know why but the MIME module fails on some Lotus mails.
/ David