Sample code for 30+ languages & platforms
Lianja

Check the Last Known IMAP Connection State

See more IMAP Examples

Demonstrates the Chilkat Imap.IsConnected method, which returns the last known connection state without sending any data to the IMAP server. A true result does not prove that an idle connection is still usable. This example connects and reads the state.

Background: IsConnected is a cheap, cached check — it reports what Chilkat last observed without touching the network. That makes it fast, but it can be stale: a server or firewall may have silently dropped an idle connection. When you need to be sure the connection is actually alive, send a lightweight round trip such as Noop, or use CheckConnection for a low-level socket probe.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

//  Demonstrates the Imap.IsConnected method, which returns the last known connection state
//  without sending data to the IMAP server.  A true result does not prove that an idle
//  connection is still usable.

loImap = createobject("CkImap")

loImap.Ssl = .T.
loImap.Port = 993

llSuccess = loImap.Connect("imap.example.com")
if (llSuccess = .F.) then
    ? loImap.LastErrorText
    release loImap
    return
endif

//  Check the last known connection state (no data is sent to the server).
llConnected = loImap.IsConnected()
if (llConnected = .T.) then
    ? "The IMAP object believes it is connected."
else
    ? "The IMAP object is not connected."
endif

llSuccess = loImap.Disconnect()
if (llSuccess = .F.) then
    ? loImap.LastErrorText
    release loImap
    return
endif



release loImap