System.out.println("bodyPart.getAllHeaders() " + x + " - " + bodyPart.getAllHeaders());
System.out.println("bodyPart.getContentType() " + x + " - " + bodyPart.getDataHandler().getContentType());
System.out.println("bodyPart.getName() " + x + " - " + bodyPart.getDataHandler().getName());
*/
if (this.isAttachment(bodyPart)) {
AttachmentInfo info = new AttachmentInfo(x, bodyPart);
infos.add(info);
continue;
}
Object bodyPartContent = bodyPart.getContent();
if (bodyPartContent instanceof MimeMultipart) {