public class IMAPProtocol extends Protocol
notifyResponseHandlers(r)
.Constructor and Description |
---|
IMAPProtocol(java.lang.String name,
java.lang.String host,
int port,
java.util.Properties props,
boolean isSSL,
MailLogger logger)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
append(java.lang.String mbox,
Flags f,
java.util.Date d,
Literal data)
APPEND Command.
|
AppendUID |
appenduid(java.lang.String mbox,
Flags f,
java.util.Date d,
Literal data)
APPEND Command, return uid from APPENDUID response code.
|
AppendUID |
appenduid(java.lang.String mbox,
Flags f,
java.util.Date d,
Literal data,
boolean uid) |
void |
authlogin(java.lang.String u,
java.lang.String p)
The AUTHENTICATE command with AUTH=LOGIN authenticate scheme
|
void |
authntlm(java.lang.String authzid,
java.lang.String u,
java.lang.String p)
The AUTHENTICATE command with AUTH=NTLM authentication scheme.
|
void |
authplain(java.lang.String authzid,
java.lang.String u,
java.lang.String p)
The AUTHENTICATE command with AUTH=PLAIN authentication scheme.
|
void |
capability()
CAPABILITY command.
|
void |
check()
CHECK Command.
|
void |
close()
CLOSE Command.
|
void |
copy(int start,
int end,
java.lang.String mbox) |
void |
copy(MessageSet[] msgsets,
java.lang.String mbox)
COPY command.
|
void |
create(java.lang.String mbox)
CREATE Command.
|
void |
delete(java.lang.String mbox)
DELETE Command.
|
void |
deleteACL(java.lang.String mbox,
java.lang.String user)
DELETEACL Command.
|
void |
disconnect()
Close socket connection.
|
MailboxInfo |
examine(java.lang.String mbox)
EXAMINE Command.
|
void |
expunge()
EXPUNGE Command.
|
Response[] |
fetch(int start,
int end,
java.lang.String what) |
Response[] |
fetch(int msg,
java.lang.String what) |
Response[] |
fetch(MessageSet[] msgsets,
java.lang.String what) |
BODY |
fetchBody(int msgno,
java.lang.String section)
Fetch given BODY section.
|
BODY |
fetchBody(int msgno,
java.lang.String section,
int start,
int size)
Partial FETCH of given BODY section.
|
BODY |
fetchBody(int msgno,
java.lang.String section,
int start,
int size,
ByteArray ba)
Partial FETCH of given BODY section.
|
BODYSTRUCTURE |
fetchBodyStructure(int msgno)
Fetch the BODYSTRUCTURE of the specified message.
|
Flags |
fetchFlags(int msgno)
Fetch the FLAGS for the given message.
|
RFC822DATA |
fetchRFC822(int msgno,
java.lang.String what)
Fetch the specified RFC822 Data item.
|
UID |
fetchSequenceNumber(long uid)
Get the sequence number for the given UID.
|
UID[] |
fetchSequenceNumbers(long[] uids)
Get the sequence numbers for UIDs ranging from start till end.
|
UID[] |
fetchSequenceNumbers(long start,
long end)
Get the sequence numbers for UIDs ranging from start till end.
|
UID |
fetchUID(int msgno)
Fetch the IMAP UID for the given message.
|
ACL[] |
getACL(java.lang.String mbox)
GETACL Command.
|
java.util.Map |
getCapabilities()
Return the map of capabilities returned by the server.
|
FetchItem[] |
getFetchItems()
Return an array of FetchItem objects describing the
FETCH items supported by this protocol.
|
Quota[] |
getQuota(java.lang.String root)
GETQUOTA Command.
|
Quota[] |
getQuotaRoot(java.lang.String mbox)
GETQUOTAROOT Command.
|
boolean |
hasCapability(java.lang.String c)
Check whether the given capability is supported by
this server.
|
void |
id(java.lang.String guid)
ID Command, for Yahoo! Mail IMAP server.
|
void |
idleAbort()
Abort an IDLE command.
|
void |
idleStart()
IDLE Command.
|
boolean |
isAuthenticated()
Returns
true if the connection has been authenticated,
either due to a successful login, or due to a PREAUTH greeting response. |
boolean |
isREV1()
Returns
true if this is a IMAP4rev1 server |
ListInfo[] |
list(java.lang.String ref,
java.lang.String pattern)
LIST Command.
|
Rights[] |
listRights(java.lang.String mbox,
java.lang.String user)
LISTRIGHTS Command.
|
void |
login(java.lang.String u,
java.lang.String p)
LOGIN Command.
|
void |
logout()
LOGOUT Command.
|
ListInfo[] |
lsub(java.lang.String ref,
java.lang.String pattern)
LSUB Command.
|
Rights |
myRights(java.lang.String mbox)
MYRIGHTS Command.
|
Namespaces |
namespace()
NAMESPACE Command.
|
void |
noop()
The NOOP command.
|
BODY |
peekBody(int msgno,
java.lang.String section)
Fetch given BODY section, without marking the message
as SEEN.
|
BODY |
peekBody(int msgno,
java.lang.String section,
int start,
int size)
Partial FETCH of given BODY section, without setting SEEN flag.
|
BODY |
peekBody(int msgno,
java.lang.String section,
int start,
int size,
ByteArray ba)
Partial FETCH of given BODY section, without setting SEEN flag.
|
boolean |
processIdleResponse(Response r)
Process a response returned by readIdleResponse().
|
void |
proxyauth(java.lang.String u)
PROXYAUTH Command.
|
Response |
readIdleResponse()
While an IDLE command is in progress, read a response
sent from the server.
|
Response |
readResponse()
Read a response from the server.
|
void |
rename(java.lang.String o,
java.lang.String n)
RENAME Command.
|
void |
sasllogin(java.lang.String[] allowed,
java.lang.String realm,
java.lang.String authzid,
java.lang.String u,
java.lang.String p)
SASL-based login.
|
int[] |
search(MessageSet[] msgsets,
SearchTerm term)
Issue the given search criterion on the specified message sets.
|
int[] |
search(SearchTerm term)
Issue the given search criterion on all messages in this folder.
|
MailboxInfo |
select(java.lang.String mbox)
SELECT Command.
|
void |
setACL(java.lang.String mbox,
char modifier,
ACL acl)
SETACL Command.
|
void |
setQuota(Quota quota)
SETQUOTA Command.
|
int[] |
sort(SortTerm[] term,
SearchTerm sterm)
Sort messages in the folder according to the specified sort criteria.
|
void |
startTLS()
STARTTLS Command.
|
Status |
status(java.lang.String mbox,
java.lang.String[] items)
STATUS Command.
|
void |
storeFlags(int msg,
Flags flags,
boolean set)
Set the specified flags on this message.
|
void |
storeFlags(int start,
int end,
Flags flags,
boolean set) |
void |
storeFlags(MessageSet[] msgsets,
Flags flags,
boolean set) |
void |
subscribe(java.lang.String mbox)
SUBSCRIBE Command.
|
void |
uidexpunge(UIDSet[] set)
UID EXPUNGE Command.
|
void |
unselect()
UNSELECT Command.
|
void |
unsubscribe(java.lang.String mbox)
UNSUBSCRIBE Command.
|
addResponseHandler, command, getTimestamp, handleResult, isSSL, notifyResponseHandlers, removeResponseHandler, simpleCommand, startTLS, writeCommand
public IMAPProtocol(java.lang.String name, java.lang.String host, int port, java.util.Properties props, boolean isSSL, MailLogger logger) throws java.io.IOException, ProtocolException
host
- host to connect toport
- portnumber to connect todebug
- debug modeprops
- Properties object used by this protocoljava.io.IOException
ProtocolException
public FetchItem[] getFetchItems()
public void capability() throws ProtocolException
ProtocolException
public boolean isAuthenticated()
true
if the connection has been authenticated,
either due to a successful login, or due to a PREAUTH greeting response.public boolean isREV1()
true
if this is a IMAP4rev1 serverpublic Response readResponse() throws java.io.IOException, ProtocolException
readResponse
in class Protocol
java.io.IOException
ProtocolException
public boolean hasCapability(java.lang.String c)
true
if so, otherwise
returns false.public java.util.Map getCapabilities()
public void disconnect()
public void noop() throws ProtocolException
ProtocolException
public void logout() throws ProtocolException
ProtocolException
public void login(java.lang.String u, java.lang.String p) throws ProtocolException
ProtocolException
public void authlogin(java.lang.String u, java.lang.String p) throws ProtocolException
ProtocolException
public void authplain(java.lang.String authzid, java.lang.String u, java.lang.String p) throws ProtocolException
authlogin(java.lang.String, java.lang.String)
method.authzid
- the authorization idu
- the usernamep
- the passwordProtocolException
- as thrown by Protocol.handleResult(com.sun.mail.iap.Response)
.public void authntlm(java.lang.String authzid, java.lang.String u, java.lang.String p) throws ProtocolException
authlogin(java.lang.String, java.lang.String)
method.authzid
- the authorization idu
- the usernamep
- the passwordProtocolException
- as thrown by Protocol.handleResult(com.sun.mail.iap.Response)
.public void sasllogin(java.lang.String[] allowed, java.lang.String realm, java.lang.String authzid, java.lang.String u, java.lang.String p) throws ProtocolException
ProtocolException
public void proxyauth(java.lang.String u) throws ProtocolException
ProtocolException
public void id(java.lang.String guid) throws ProtocolException
ProtocolException
public void startTLS() throws ProtocolException
ProtocolException
public MailboxInfo select(java.lang.String mbox) throws ProtocolException
ProtocolException
public MailboxInfo examine(java.lang.String mbox) throws ProtocolException
ProtocolException
public void unselect() throws ProtocolException
ProtocolException
public Status status(java.lang.String mbox, java.lang.String[] items) throws ProtocolException
ProtocolException
public void create(java.lang.String mbox) throws ProtocolException
ProtocolException
public void delete(java.lang.String mbox) throws ProtocolException
ProtocolException
public void rename(java.lang.String o, java.lang.String n) throws ProtocolException
ProtocolException
public void subscribe(java.lang.String mbox) throws ProtocolException
ProtocolException
public void unsubscribe(java.lang.String mbox) throws ProtocolException
ProtocolException
public ListInfo[] list(java.lang.String ref, java.lang.String pattern) throws ProtocolException
ProtocolException
public ListInfo[] lsub(java.lang.String ref, java.lang.String pattern) throws ProtocolException
ProtocolException
public void append(java.lang.String mbox, Flags f, java.util.Date d, Literal data) throws ProtocolException
ProtocolException
public AppendUID appenduid(java.lang.String mbox, Flags f, java.util.Date d, Literal data) throws ProtocolException
ProtocolException
public AppendUID appenduid(java.lang.String mbox, Flags f, java.util.Date d, Literal data, boolean uid) throws ProtocolException
ProtocolException
public void check() throws ProtocolException
ProtocolException
public void close() throws ProtocolException
ProtocolException
public void expunge() throws ProtocolException
ProtocolException
public void uidexpunge(UIDSet[] set) throws ProtocolException
ProtocolException
public BODYSTRUCTURE fetchBodyStructure(int msgno) throws ProtocolException
ProtocolException
public BODY peekBody(int msgno, java.lang.String section) throws ProtocolException
ProtocolException
public BODY fetchBody(int msgno, java.lang.String section) throws ProtocolException
ProtocolException
public BODY peekBody(int msgno, java.lang.String section, int start, int size) throws ProtocolException
ProtocolException
public BODY fetchBody(int msgno, java.lang.String section, int start, int size) throws ProtocolException
ProtocolException
public BODY peekBody(int msgno, java.lang.String section, int start, int size, ByteArray ba) throws ProtocolException
ProtocolException
public BODY fetchBody(int msgno, java.lang.String section, int start, int size, ByteArray ba) throws ProtocolException
ProtocolException
public RFC822DATA fetchRFC822(int msgno, java.lang.String what) throws ProtocolException
null
to fetch the whole message.ProtocolException
public Flags fetchFlags(int msgno) throws ProtocolException
ProtocolException
public UID fetchUID(int msgno) throws ProtocolException
ProtocolException
public UID fetchSequenceNumber(long uid) throws ProtocolException
null
is returned.ProtocolException
public UID[] fetchSequenceNumbers(long start, long end) throws ProtocolException
ProtocolException
public UID[] fetchSequenceNumbers(long[] uids) throws ProtocolException
ProtocolException
public Response[] fetch(MessageSet[] msgsets, java.lang.String what) throws ProtocolException
ProtocolException
public Response[] fetch(int start, int end, java.lang.String what) throws ProtocolException
ProtocolException
public Response[] fetch(int msg, java.lang.String what) throws ProtocolException
ProtocolException
public void copy(MessageSet[] msgsets, java.lang.String mbox) throws ProtocolException
ProtocolException
public void copy(int start, int end, java.lang.String mbox) throws ProtocolException
ProtocolException
public void storeFlags(MessageSet[] msgsets, Flags flags, boolean set) throws ProtocolException
ProtocolException
public void storeFlags(int start, int end, Flags flags, boolean set) throws ProtocolException
ProtocolException
public void storeFlags(int msg, Flags flags, boolean set) throws ProtocolException
ProtocolException
public int[] search(MessageSet[] msgsets, SearchTerm term) throws ProtocolException, SearchException
msgsets
- array of MessageSetsterm
- SearchTermProtocolException
SearchException
public int[] search(SearchTerm term) throws ProtocolException, SearchException
term
- SearchTermProtocolException
SearchException
public int[] sort(SortTerm[] term, SearchTerm sterm) throws ProtocolException, SearchException
term
- sort criteriasterm
- SearchTermProtocolException
SearchException
public Namespaces namespace() throws ProtocolException
ProtocolException
public Quota[] getQuotaRoot(java.lang.String mbox) throws ProtocolException
ProtocolException
public Quota[] getQuota(java.lang.String root) throws ProtocolException
ProtocolException
public void setQuota(Quota quota) throws ProtocolException
ProtocolException
public void setACL(java.lang.String mbox, char modifier, ACL acl) throws ProtocolException
ProtocolException
public void deleteACL(java.lang.String mbox, java.lang.String user) throws ProtocolException
ProtocolException
public ACL[] getACL(java.lang.String mbox) throws ProtocolException
ProtocolException
public Rights[] listRights(java.lang.String mbox, java.lang.String user) throws ProtocolException
ProtocolException
public Rights myRights(java.lang.String mbox) throws ProtocolException
ProtocolException
public void idleStart() throws ProtocolException
If the server supports the IDLE command extension, the IDLE command is issued and this method blocks until a response has been received. Once the first response has been received, the IDLE command is terminated and all responses are collected and handled and this method returns.
Note that while this method is blocked waiting for a response, no other threads may issue any commands to the server that would use this same connection.
ProtocolException
public Response readIdleResponse()
public boolean processIdleResponse(Response r) throws ProtocolException
ProtocolException
public void idleAbort() throws ProtocolException
ProtocolException
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"