@Override public synchronized BodyPart getBodyPart(String cid) throws MessagingException { if (ZPARSER) { if (cid != null) { for (com.zimbra.common.mime.MimePart mp : zmultipart) { if (cid.equals(mp.getMimeHeader("Content-ID"))) { return partWrapper(mp); } } } return null; } else { return super.getBodyPart(cid); } }