|
Summary
When connecting to a port other than the well-know port of 143 through a firewall, this property needs to be set with the port number to be connected.
Description
This property should be set before calling FwConnect. This property should be set to the IMAP port.
This property can be set at design time or at runtime before a firewall connection is established. The default value for this property is 143.
Example
Imap.ImapPort = 143
Result = Imap.FwConnect (Host, User, Password, FwServer, 1080)
If (Result = IMAP_SUCCESS) Then
MessageBox "Successful connection", "sample application", 64 End If
|