Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi DLL) How to Copy IMAP Mail to another IMAP ServerDemonstrates how to copy the entire contents of an IMAP mailbox to another IMAP server.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Imap, StringArray; ... procedure TForm1.Button1Click(Sender: TObject); var imapSrc: HCkImap; success: Boolean; imapDest: HCkImap; startSeqNum: Integer; msgCount: Integer; sa: HCkStringArray; i: Integer; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. imapSrc := CkImap_Create(); // Connect to our source IMAP server. success := CkImap_Connect(imapSrc,'imap.someMailServer.com'); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapSrc)); Exit; end; // Login to the source IMAP server success := CkImap_Login(imapSrc,'admin@chilkatsoft.com','myPassword'); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapSrc)); Exit; end; imapDest := CkImap_Create(); // Connect to our destination IMAP server. success := CkImap_Connect(imapDest,'mail.example-code.com'); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapDest)); Exit; end; // Login to the destination IMAP server success := CkImap_Login(imapDest,'myLogin','myPassword'); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapDest)); Exit; end; // Select an IMAP mailbox on the source IMAP server success := CkImap_SelectMailbox(imapSrc,'Inbox'); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapSrc)); Exit; end; // After selecting a mailbox, the NumMessages property will // be updated to reflect the total number of emails in the mailbox: Memo1.Lines.Add(IntToStr(CkImap_getNumMessages(imapSrc))); // The emails in the mailbox will always have sequence numbers // ranging from 1 to NumMessages. // This example will copy the first 10 messages. // We'll leave it up to you to write code to copy // the entire sequence range in reasonable size chunks. startSeqNum := 1; msgCount := 10; sa := CkImap_FetchSequenceAsMime(imapSrc,startSeqNum,msgCount); if (CkImap_getLastMethodSuccess(imapSrc) <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapSrc)); Exit; end; for i := 0 to CkStringArray_getCount(sa) - 1 do begin success := CkImap_AppendMime(imapDest,'Inbox',CkStringArray__getString(sa,i)); if (success <> True) then begin Memo1.Lines.Add(CkImap__lastErrorText(imapDest)); Exit; end; end; CkStringArray_Dispose(sa); // Disconnect from the IMAP servers. success := CkImap_Disconnect(imapSrc); success := CkImap_Disconnect(imapDest); CkImap_Dispose(imapSrc); CkImap_Dispose(imapDest); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.