Java
Java
Open an IMAP Mailbox Read-Only
See more IMAP Examples
Demonstrates the Chilkat Imap.ExamineMailbox method, which opens a mailbox as read-only. Use it instead of SelectMailbox when the application must not change message state, such as the \Seen flag. This example examines the Inbox.
Background: Reading a message can have a side effect: fetching its body normally sets the
\Seen flag, marking it as read. ExamineMailbox corresponds to IMAP's EXAMINE command, which opens the mailbox in a read-only mode where no such changes are made — ideal for scanning, indexing, or backup tools that must leave the user's mailbox exactly as they left it.Chilkat Java Downloads
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
boolean success = false;
// Demonstrates the Imap.ExamineMailbox method, which opens a mailbox as read-only. Use this
// instead of SelectMailbox when the application must not change message state (such as the
// \Seen flag).
CkImap imap = new CkImap();
imap.put_Ssl(true);
imap.put_Port(993);
success = imap.Connect("imap.example.com");
if (success == false) {
System.out.println(imap.lastErrorText());
return;
}
success = imap.Login("user@example.com","myPassword");
if (success == false) {
System.out.println(imap.lastErrorText());
return;
}
// Open the Inbox as read-only.
success = imap.ExamineMailbox("Inbox");
if (success == false) {
System.out.println(imap.lastErrorText());
return;
}
System.out.println("Inbox opened read-only.");
success = imap.Disconnect();
if (success == false) {
System.out.println(imap.lastErrorText());
return;
}
}
}