IPWorks OpenPGP 2020 Java Edition

Questions / Feedback?

MessagePart Event

Fired for each message part when FetchMessageInfo is called.

Syntax

public class DefaultPimapEventListener implements PimapEventListener {
  ...
  public void messagePart(PimapMessagePartEvent e) {}
  ...
}

public class PimapMessagePartEvent {
  public String partId;
  public long size;
  public String contentType;
  public String filename;
  public String contentEncoding;
  public String parameters;
  public String multipartMode;
  public String contentId;
  public String contentDisposition;
}

Remarks

The PartId parameter denotes the PartId which may be identified in other parts or messages. The format of part id-s is specified by the IMAP RFCs.

The Size parameter gives the size of this part.

The ContentType parameter shows the type of data contained in the part.

The ContentEncoding parameter shows how the data is encoded.

The Filename parameter shows the filename corresponding to the part (if the part was included in the message as an attached file).

The Parameters parameter contains the additional parameters passed to the ContentType header such as the part charset etc.

The MultipartMode parameter shows the how this part relates to the message's whole multipart structure ('mixed', 'alternative', etc.).

The ContentId parameter shows the value of the Content-Id header for the part.

The ContentEncoding parameter shows the value of the Content-Encoding header for the part.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks OpenPGP 2020 Java Edition - Version 20.0 [Build 8249]