Sample code for 30+ languages & platforms
PowerBuilder

IMAP Search with THREAD Semantics

See more IMAP Examples

Demonstrates how to search an IMAP mailbox and return message numbers grouped together in parent/child relationships based on which messages are replies to others.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Imap
oleobject loo_Json
integer li_NumThreads
oleobject loo_Arr
integer li_ThreadSize
integer i
oleobject loo_SubArr

li_Success = 0

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Imap = create oleobject
li_rc = loo_Imap.ConnectToNewObject("Chilkat.Imap")
if li_rc < 0 then
    destroy loo_Imap
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Connect to your IMAP server and authenticate..
loo_Imap.Ssl = 1
loo_Imap.Port = 993
li_Success = loo_Imap.Connect("imap.mail.us-west-2.awsapps.com")
if li_Success = 0 then
    Write-Debug loo_Imap.LastErrorText
    destroy loo_Imap
    return
end if

li_Success = loo_Imap.Login("myLogin","myPassword")
if li_Success = 0 then
    Write-Debug loo_Imap.LastErrorText
    destroy loo_Imap
    return
end if

// Select a mailbox
li_Success = loo_Imap.SelectMailbox("Inbox")
if li_Success = 0 then
    Write-Debug loo_Imap.LastErrorText
    destroy loo_Imap
    return
end if

// Search for all message having the letter 'a' somewhere in the Subject,
// and return the messages as JSON.
loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

li_Success = loo_Imap.QueryThread("REFERENCES","SUBJECT a",1,loo_Json)
if li_Success = 0 then
    Write-Debug loo_Imap.LastErrorText
    destroy loo_Imap
    destroy loo_Json
    return
end if

// The IMAP server will return a raw response with a format such as this:  (2)(3 6 (4 23)(44 7 96))

// In tree form, it's like this:
// 
//             -- 2
//             -- 3
//                 \-- 6
//                    |-- 4
//                    |      \-- 23
//                    |
//                    |-- 44
//                               \-- 7
//                                       \-- 96
// 

// It means there are 2 main threads returned, but the 2nd thread splits into two sub-threads.
// In total, we can think of it as 3 threads -- 2 main threads (with no parents) and one sub-thread w/ a parent.
// 
// - The 1st thread contains the message 2, and has no parent thread.
// - The 2nd thread contains the messages 3, 6, 4, 23, and has no parent thread.
// - The 3rd thread contains the messages 44, 7, 96 and the parent thread is message 6.
// 

// (Yes, this is all highly confusing...)

// Chilkat will return the above sample response as JSON that looks like this:

// {
//   "threads": [
//     [2],
//     [3, 6, [4, 23], [44, 7, 96]]
//   ]
// }
// 

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON
// In this case, the online tool can help you get a feel for how to write the JSON parsing code..

li_NumThreads = loo_Json.SizeOfArray("threads")
Write-Debug "The total number of top-level threads is " + string(li_NumThreads)

// Let's say we wanted to get the messages in the thread 3, 6, 4, 23.
// We always follow the 1st branch to the bottom, ignoring the other branches.
// For example, if we had  [3, 5, [4, 23, [55, 56, 57], [68, 69]], [44, 7, 96]]
// then the thread would be 3, 5, 4, 43, 55, 56, 57

// For testing, let's substitute the response from the IMAP server with this sample:
loo_Json.Load("{~"threads~": [[2], [3, 5, [4, 23, [55, 56, 57], [68, 69]], [44, 7, 96]]]}")

// Begin with the 2nd top-level thread, which is at index 1.
Write-Debug "Following the 2nd top level thread..."
loo_Arr = loo_Json.ArrayOf("threads[1]")
li_ThreadSize = loo_Arr.Size
i = 0
do while i < li_ThreadSize
    // Do we have an array or integer at this position?
    if loo_Arr.TypeAt(i) = 4 then
        // This is a sub-array.
        loo_SubArr = loo_Arr.ArrayAt(i)
        destroy loo_Arr
        // Follow the sub-array starting at the 1st position..
        loo_Arr = loo_SubArr
        i = 0
        li_ThreadSize = loo_Arr.Size
    else
        // Must be a single integer.
        Write-Debug string(loo_Arr.IntAt(i))
        i = i + 1
    end if

loop

// The output is:
// 
// Following the 2nd top level thread...
// 3
// 5
// 4
// 23
// 55
// 56
// 57


destroy loo_Imap
destroy loo_Json