Package | Description |
---|---|
com.sun.mail.imap |
An IMAP protocol provider for the JavaMail API
that provides access to an IMAP message store.
|
com.sun.mail.imap.protocol |
This package includes internal IMAP support classes and
SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.
|
Modifier and Type | Method and Description |
---|---|
AppendUID[] |
IMAPFolder.appendUIDMessages(Message[] msgs)
Append the given messages into this folder.
|
private AppendUID[] |
IMAPFolder.copymoveUIDMessages(Message[] msgs,
Folder folder,
boolean move)
Copy or move the specified messages from this folder, to the
specified destination.
|
AppendUID[] |
IMAPFolder.copyUIDMessages(Message[] msgs,
Folder folder)
Copy the specified messages from this folder, to the
specified destination.
|
AppendUID[] |
IMAPFolder.moveUIDMessages(Message[] msgs,
Folder folder)
Move the specified messages from this folder, to the
specified destination.
|
Modifier and Type | Method and Description |
---|---|
AppendUID |
IMAPProtocol.appenduid(java.lang.String mbox,
Flags f,
java.util.Date d,
Literal data)
APPEND Command, return uid from APPENDUID response code.
|
AppendUID |
IMAPProtocol.appenduid(java.lang.String mbox,
Flags f,
java.util.Date d,
Literal data,
boolean uid) |
private AppendUID |
IMAPProtocol.getAppendUID(Response r)
If the response contains an APPENDUID response code, extract
it and return an AppendUID object with the information.
|