Hi,
I may have notice a decoding issue with NAME field on TO/FROM/CC/... in the ENVELOPE. It seems to be the same kind of issue than #318.
Here, part of the result of a FETCH:
"envelope": {
"date": "2014-07-03T12:06:50.000Z",
"subject": "Test",
"from": [
{
"name": "=?utf-8?Q?Timoth=C3=A9e_Eid?=",
"mailbox": "timothee.eid",
"host": "erizo.fr"
}
]
I think the solution may be to add this in the Parser.js (function: parseEnvelopeAddresses)
name: decodeWords(addr[0], {buffer: undefined, encoding: undefined, consecutive: false, replaces: undefined, curReplace: undefined}),
instead of:
Hi,
I may have notice a decoding issue with NAME field on TO/FROM/CC/... in the ENVELOPE. It seems to be the same kind of issue than #318.
Here, part of the result of a FETCH:
I think the solution may be to add this in the Parser.js (function: parseEnvelopeAddresses)
instead of: