DataFlex
DataFlex
Verify Connectivity to the POP3 Server
See more POP3 Examples
Demonstrates the Chilkat MailMan.VerifyPopConnection method, which tests whether a TCP/IP connection can be established with the configured POP3 server. It verifies connectivity only — it does not authenticate. This example configures the POP3 host and checks whether it can be reached.
Background: This is the POP3 counterpart to
VerifySmtpConnection. It answers the first diagnostic question — can the client reach the POP3 server on the configured host and port and complete the TLS handshake? A failure here indicates a network, firewall, DNS, port, or certificate problem rather than a credentials issue, which VerifyPopLogin checks next.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoMailman
Boolean iConnected
// Demonstrates the MailMan.VerifyPopConnection method, which tests whether a TCP/IP
// connection can be established with the configured POP3 server. It verifies connectivity
// only (it does not authenticate).
Get Create (RefClass(cComChilkatMailMan)) To hoMailman
If (Not(IsComObjectCreated(hoMailman))) Begin
Send CreateComObject of hoMailman
End
// Configure the POP3 server connection.
Set ComMailHost Of hoMailman To "pop.example.com"
Set ComMailPort Of hoMailman To 995
Set ComPopSsl Of hoMailman To True
// Test connectivity to the POP3 server.
Get ComVerifyPopConnection Of hoMailman To iConnected
If (iConnected = True) Begin
Showln "Successfully connected to the POP3 server."
End
Else Begin
Showln "Could not connect to the POP3 server."
End
End_Procedure