NTLMAuth Property

This property indicates if anpop uses secure password to login in POP3 & IMAP4 server.


Data Type: Long

Value Meaning
0 (Default) Plain Password
1 Auth NTLM(secure password authentication)

Remarks

So far it seems that only Microsoft Exchange Server supports Secure Password Authentication.

Usage Example

[Visual Basic]
Dim oPop3 As Object
Set oPop3 = CreateObject("ANPOP.POPMAIN")

oPop3.NTLMAuth = 1 

Call oPop3.Connect( "pop3.email.com", "John", "John123" )
Dim bOk As Boolean
bOk = oPop3.Connected  
 
If bOk Then 
  MsgBox "Connecting server succeeds."
Else
  MsgBox "Connecting server fails."
End If

See Also

Connect Method

2001-2007 © Copyright AdminSystem Software Limited. All rights reserved.