|
Summary
The username for the firewall authentication.
Description
This property specifies the username for authentication with a firewall server. This property is mandatory when calling the FwConnect method to connect to a SOCKS version 4 server. It must
also be used when connecting to a SOCKS version 5 server if the FwAuthMethods property contains a "2". When used the FwUsername and FwPassword properties must be set to a valid login username and
password respectively.
This property can be set at design time and at run time before a connection is established. There is no default value for this property.
Example
Imap.FwAuthMethods = "2"
Imap.FwUsername = "joe"
Imap.FwPassword = "distinct"
Result = Imap.FwConnect (Host, FwServer, 1080)
If (Result = IMAP_SUCCESS) Then
MessageBox "Successful connection", "sample application", 64
End If
|