Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Java Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Java) Move Messages from one Mailbox to Another

If your IMAP server supports the MOVE capability, then it is possible to move messages from one mailbox (folder) to another. This example demonstrates the MOVE command using the SendRawCommand method. The IMAP MOVE Extension is documented in RFC 6851.

Chilkat Java Downloads

Java Libs for Windows, MacOS, Linux, Alpine Linux, Solaris

Java Libs for Android

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[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkImap imap = new CkImap();

    // Use an implicit TLS connection.
    imap.put_Ssl(true);
    imap.put_Port(993);
    boolean success = imap.Connect("MY-IMAP-DOMAIN");
    if (success != true) {
        System.out.println(imap.lastErrorText());
        return;
        }

    // Authenticate
    success = imap.Login("MY-IMAP-LOGIN","MY-IMAP-PASSWORD");
    if (success != true) {
        System.out.println(imap.lastErrorText());
        return;
        }

    // Get the list of capabilities:
    String caps = imap.capability();
    System.out.println("Capabilities: " + caps);

    // Here is an example of the string returned:
    // * CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 
    // UIDPLUS COMPRESS=DEFLATE ENABLE MOVE CONDSTORE ESEARCH UTF8=ACCEPT APPENDLIMIT=35882577
    // LIST-EXTENDED LIST-STATUS

    if (imap.HasCapability("MOVE",caps) != true) {
        System.out.println("The IMAP server does not support the MOVE extension.");
        return;
        }

    System.out.println("Good, the MOVE extension is supported...");

    // Select a mailbox, search for some messages to get a sequence-set (i.e. a 
    // range of message sequence numbers or UIDs.  Then move these messages to another
    // mailbox.

    success = imap.SelectMailbox("old");
    if (success != true) {
        System.out.println(imap.lastErrorText());
        return;
        }

    // Get a set of message sequence numbers for all emails with "Gencer" in the FROM name/address.
    boolean bReturnUids = false;
    CkMessageSet msgSet = imap.Search("FROM Gencer",bReturnUids);
    if (imap.get_LastMethodSuccess() != true) {
        System.out.println(imap.lastErrorText());
        return;
        }

    // The message set, as a compact string, will look something like this:
    // 1572,1876:1881,1883,1886,1895,1905:1906,1910:1911,1923,1959:1963
    String sequenceSet = msgSet.toCompactString();
    System.out.println(sequenceSet);

    // Let's form our MOVE command.
    CkStringBuilder sbMoveCmd = new CkStringBuilder();
    sbMoveCmd.Append("MOVE ");
    sbMoveCmd.Append(sequenceSet);
    sbMoveCmd.Append(" old/gencer");
    System.out.println("Sending: " + sbMoveCmd.getAsString());

    String cmdResponse = imap.sendRawCommand(sbMoveCmd.getAsString());
    if (imap.get_LastMethodSuccess() != true) {
        System.out.println(imap.lastErrorText());
        return;
        }

    System.out.println(cmdResponse);

    // The response looks like this:
    // 	* 1572 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1875 EXPUNGE
    // 	* 1876 EXPUNGE
    // 	* 1878 EXPUNGE
    // 	* 1886 EXPUNGE
    // 	* 1895 EXPUNGE
    // 	* 1895 EXPUNGE
    // 	* 1898 EXPUNGE
    // 	* 1898 EXPUNGE
    // 	* 1909 EXPUNGE
    // 	* 1944 EXPUNGE
    // 	* 1944 EXPUNGE
    // 	* 1944 EXPUNGE
    // 	* 1944 EXPUNGE
    // 	* 1944 EXPUNGE
    // 	* 2274 EXISTS
    // 	aaaf OK [COPYUID 62 1582,1886:1891,1893,1896,1905,1915:1916,1920:1921,1933,1974:1978 20,17,16,15,14,13,12,10:11,9,19,18,8,7,6,5,4,3,2,1] (Success)

    // The last line should indicate OK.
    // Note: Starting in Chilkat v9.5.0.62, the Chilkat will add a MoveMessages method to make this easier.
    // Until then, or if using an older version of Chilkat, the response will need to be parsed for "OK" or "BAD".

    // Disconnect from the IMAP server.
    success = imap.Disconnect();

    System.out.println("All Done.");
  }
}

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.