-
-
Notifications
You must be signed in to change notification settings - Fork 274
Description
Originally reported under #298:
When reading nested outlook messages back from the attachment datasource (as attachments on an Email instance are datasources), attachments said outlook message are missing.
The reason for this is that reading nested Outlook messages as attachment of another Outlook msg is only possible by converting it to a Java structure first (using outlook-message-parser). This is a one-way conversion. Since the nested outlook message-as-an-attachment should be represented as attachment under an Email instance, it should be serialized to a datasource. Nested attachments then of this nested Outlook message are datasources themselves and cannot be serialized (javax.activation.DataSource is a JDK interface).
To solve this problem, a more comprehensive serialization solution is needed. Kryo should solve the problem nicely.