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

Visual FoxPro 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

 

 

 

(Visual FoxPro) Copy Email from one IMAP Account to Another

Demonstrates how to copy the email in a mailbox from one account to another.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loImapSrc
LOCAL lnSuccess
LOCAL loImapDest
LOCAL lnFetchUids
LOCAL loMset
LOCAL loFac
LOCAL loMsetAlreadyCopied
LOCAL lcStrMsgSet
LOCAL lnNumUids
LOCAL loSbFlags
LOCAL i
LOCAL lnUid
LOCAL lcFlags
LOCAL lcMimeStr
LOCAL lnSeen
LOCAL lnFlagged
LOCAL lnAnswered
LOCAL lnDraft

loImapSrc = CreateObject('Chilkat_9_5_0.Imap')

* This example assumes Chilkat Imap to have been previously unlocked.
* See Unlock Imap for sample code.

* Connect to our source IMAP server.
loImapSrc.Ssl = 1
loImapSrc.Port = 993
lnSuccess = loImapSrc.Connect("MY-IMAP-DOMAIN")
IF (lnSuccess <> 1) THEN
    ? loImapSrc.LastErrorText
    RELEASE loImapSrc
    CANCEL
ENDIF

* Login to the source IMAP server
lnSuccess = loImapSrc.Login("MY-IMAP-LOGIN","MY-IMAP-PASSWORD")
IF (lnSuccess <> 1) THEN
    ? loImapSrc.LastErrorText
    RELEASE loImapSrc
    CANCEL
ENDIF

loImapDest = CreateObject('Chilkat_9_5_0.Imap')

* Connect to our destination IMAP server.
loImapDest.Ssl = 1
loImapDest.Port = 993
lnSuccess = loImapDest.Connect("MY-IMAP-DOMAIN2")
IF (lnSuccess <> 1) THEN
    ? loImapDest.LastErrorText
    RELEASE loImapSrc
    RELEASE loImapDest
    CANCEL
ENDIF

* Login to the destination IMAP server
lnSuccess = loImapDest.Login("MY-IMAP-LOGIN2","MY-IMAP-PASSWORD2")
IF (lnSuccess <> 1) THEN
    ? loImapDest.LastErrorText
    RELEASE loImapSrc
    RELEASE loImapDest
    CANCEL
ENDIF

* Select a source IMAP mailbox on the source IMAP server
lnSuccess = loImapSrc.SelectMailbox("Inbox")
IF (lnSuccess <> 1) THEN
    ? loImapSrc.LastErrorText
    RELEASE loImapSrc
    RELEASE loImapDest
    CANCEL
ENDIF

lnFetchUids = 1

* Get the set of UIDs for all emails on the source server.
loMset = loImapSrc.Search("ALL",lnFetchUids)
IF (loImapSrc.LastMethodSuccess <> 1) THEN
    ? loImapSrc.LastErrorText
    RELEASE loImapSrc
    RELEASE loImapDest
    CANCEL
ENDIF

* Load the complete set of UIDs that were previously copied.
* We dont' want to copy any of these to the destination.
loFac = CreateObject('Chilkat_9_5_0.FileAccess')
loMsetAlreadyCopied = CreateObject('Chilkat_9_5_0.MessageSet')
lcStrMsgSet = loFac.ReadEntireTextFile("qa_cache/saAlreadyLoaded.txt","utf-8")
IF (loFac.LastMethodSuccess = 1) THEN
    loMsetAlreadyCopied.FromCompactString(lcStrMsgSet)
ENDIF

lnNumUids = loMset.Count
loSbFlags = CreateObject('Chilkat_9_5_0.StringBuilder')

i = 0
DO WHILE i < lnNumUids

    * If this UID was not already copied...
    lnUid = loMset.GetId(i)
    IF (NOT loMsetAlreadyCopied.ContainsId(lnUid)) THEN

        ? "copying " + STR(lnUid) + "..."

        * Get the flags.
        lcFlags = loImapSrc.FetchFlags(lnUid,1)
        IF (loImapSrc.LastMethodSuccess = 0) THEN
            ? loImapSrc.LastErrorText
            RELEASE loImapSrc
            RELEASE loImapDest
            RELEASE loFac
            RELEASE loMsetAlreadyCopied
            RELEASE loSbFlags
            CANCEL
        ENDIF

        loSbFlags.SetString(lcFlags)

        * Get the MIME of this email from the source.
        lcMimeStr = loImapSrc.FetchSingleAsMime(lnUid,1)
        IF (loImapSrc.LastMethodSuccess = 0) THEN
            ? loImapSrc.LastErrorText
            RELEASE loImapSrc
            RELEASE loImapDest
            RELEASE loFac
            RELEASE loMsetAlreadyCopied
            RELEASE loSbFlags
            CANCEL
        ENDIF

        lnSeen = loSbFlags.Contains("\Seen",0)
        lnFlagged = loSbFlags.Contains("\Flagged",0)
        lnAnswered = loSbFlags.Contains("\Answered",0)
        lnDraft = loSbFlags.Contains("\Draft",0)

        lnSuccess = loImapDest.AppendMimeWithFlags("Inbox",lcMimeStr,lnSeen,lnFlagged,lnAnswered,lnDraft)
        IF (lnSuccess <> 1) THEN
            ? loImapDest.LastErrorText
            RELEASE loImapSrc
            RELEASE loImapDest
            RELEASE loFac
            RELEASE loMsetAlreadyCopied
            RELEASE loSbFlags
            CANCEL
        ENDIF

        * Update msetAlreadyCopied with the uid just copied.
        loMsetAlreadyCopied.InsertId(lnUid)

        * Save at every iteration just in case there's a failure..
        lcStrMsgSet = loMsetAlreadyCopied.ToCompactString()
        loFac.WriteEntireTextFile("qa_cache/saAlreadyLoaded.txt",lcStrMsgSet,"utf-8",0)
    ENDIF

    i = i + 1
ENDDO
RELEASE loMset

* Disconnect from the IMAP servers.
lnSuccess = loImapSrc.Disconnect()
lnSuccess = loImapDest.Disconnect()

RELEASE loImapSrc
RELEASE loImapDest
RELEASE loFac
RELEASE loMsetAlreadyCopied
RELEASE loSbFlags


 

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