Hello,
I developed an php application to read eml files. In that application I'm using Mime Parser class.
This application works good with most of all eml files that I already opened. However, last days I tried open some eml file and my code doesn't work with that eml file.
I will post here header section of the eml that give me problems:
Return-Path:
[email protected]
Received: from arauto.ano.local (LHLO arauto.ano.local) (192.168.10.224) =
by
arauto.ano.local with LMTP; Thu, 6 Jun 2013 11:20:45 +0100 (WEST)
Received: from localhost (localhost [127.0.0.1])
by arauto.ano.local (Postfix) with ESMTP id A11DC6E42F6
for <
[email protected]>; Thu, 6 Jun 2013 11:20:45 +0100 (WEST)
X-Virus-Scanned: amavisd-new at arauto.ano.local
X-Spam-Flag: NO
X-Spam-Score: -1.889
X-Spam-Level:=20
X-Spam-Status: No, score=3D-1.889 tagged_above=3D-10 required=3D6.6
tests=3D[BAYES_00=3D-1.9, HTML_MESSAGE=3D0.001, =
T_OBFU_PDF_ATTACH=3D0.01]
autolearn=3Dham
Received: from arauto.ano.local ([127.0.0.1])
by localhost (arauto.ano.local [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id VV0dRsxjvJc1 for <
[email protected]>;
Thu, 6 Jun 2013 11:20:35 +0100 (WEST)
Received: from mail.edifer.pt (mail.edifer.pt [62.28.11.232])
by arauto.ano.local (Postfix) with ESMTP id CF65F6E42B9
for <
[email protected]>; Thu, 6 Jun 2013 11:20:34 +0100 (WEST)
Received: from eds01ap20.edifer.pt ([192.168.200.52]) by mail.edifer.pt =
with Microsoft SMTPSVC(6.0.3790.3959);
Thu, 6 Jun 2013 11:29:05 +0100
X-MimeOLE: Produced By Microsoft Exchange V6.5
Content-class: urn:content-classes:message
Return-Receipt-To: "Santos, Claudia" <
[email protected]>
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary=3D"----_=3D_NextPart_001_01CE62A0.A769E21D"
Disposition-Notification-To: "Santos, Claudia" <
[email protected]>
Subject: =3D?utf-8?B?QXF1aXNpw6fDo28gZGUgU2Vsb3MgVGVtcG9yYWlz?=3D
Date: Thu, 6 Jun 2013 11:29:00 +0100
Message-ID: =
<
[email protected]>
X-MS-Has-Attach: yes
X-MS-TNEF-Correlator:=20
Thread-Topic: =3D?utf-8?B?QXF1aXNpw6fDo28gZGUgU2Vsb3MgVGVtcG9yYWlz?=3D
Thread-Index: AcyTzj6Js3jrB+saTw2dtxxPgmXFDAAAj8BQAADqdpBzswmIsA=3D=3D
From: "Santos, Claudia" <
[email protected]>
To: <
[email protected]>
X-OriginalArrivalTime: 06 Jun 2013 10:29:05.0375 (UTC) =
FILETIME=3D[AB9C26F0:01CE62A0]
In this header section, I realized that have some equals symbols (=) in some lines. I'm new in php and eml files, but maybe is that the problem?
Mime parser class works with RFC822, maybe this eml file has another structure..i donīt know.