using MIME::Parser 5.406
I've noticed emails with In-Reply-To/References headers with messageid's that are broken up into pieces with a newline, like here:
...
Message-Id: <p0602040bbd3860aeca63@[192.168.0.34]>
In-Reply-To:
<8FB07C0AB746224C82B15C250958123B036B41@irongiant.nano.covalentmaterials.c
Show quoted text
om>
References:
<8FB07C0AB746224C82B15C250958123B036B41@irongiant.nano.covalentmaterials.c
Show quoted text om>
...
(note the newline and spaces between '..terials.c' and 'om>')
MIME::Parser->parse(..)->head->get("references") gives this back still with the newline [and maybe spaces] in it. It thus doesn't match the original messageid anymore.
Is this a bug in MIME::Parser, the MUA (which I don't know, would have to ask), or is it a deficiency in the specs? (I've not read the specs)?
Cheers, Christian.