Improved EML viewer

This commit is contained in:
M66B
2019-02-06 16:16:06 +00:00
parent 0f055effb1
commit 16f806b738
3 changed files with 275 additions and 72 deletions

View File

@@ -626,6 +626,10 @@ public class MessageHelper {
return result;
}
List<AttachmentPart> getRawAttachments() {
return attachments;
}
List<EntityAttachment> getAttachments() throws MessagingException {
List<EntityAttachment> result = new ArrayList<>();
@@ -734,7 +738,7 @@ public class MessageHelper {
}
}
private class AttachmentPart {
class AttachmentPart {
String disposition;
String filename;
boolean pgp;