EAGetMail ActiveX Object Constants


MailServer.AuthType

[Visual Basic 6.0/VBScript]
Const MailServerAuthLogin = 0 'Specifies that the mail server uses plain text authentication. 
Const MailServerAuthCRAM5 = 1 'Specifies that the mail server uses MD5 hash authentication.
Const MailServerAuthNTLM = 2 'Specifies that the mail server uses NTLM authentication. 

[Visual C++]
const int MailServerAuthLogin = 0 //Specifies that the mail server uses plain text authentication. 
const int MailServerAuthCRAM5 = 1 //Specifies that the mail server uses MD5 hash authentication.
const int MailServerAuthNTLM = 2 //Specifies that the mail server uses NTLM authentication. 

MailServer.Protocol

[Visual Basic 6.0/VBScript]
Const MailServerPop3 = 0 'Specifies that the mail server uses POP3 protocol. 
Const MailServerImap4 = 1 'Specifies that that the mail server uses IMAP4 protocol.

[Visual C++]
const int MailServerPop3 = 0; //Specifies that the mail server uses POP3 protocol. 
const int MailServerImap4 = 1; //Specifies that that the mail server uses IMAP4 protocol.

MailServer.ProxyProtocol

[Visual Basic 6.0/VBScript]
Const ProxyType_Socks4 = 0 'Specifies that the proxy server uses Socks4 protocol.
Const ProxyType_Socks5 = 1 'Specifies that that the proxy server uses Socks5 protocol.
Const ProxyType_Http = 2 'Specifies that that the proxy server uses Http protocol. 

[Visual C++]
const int ProxyType_Socks4 = 0; 'Specifies that the proxy server uses Socks4 protocol.
const int ProxyType_Socks5 = 1; 'Specifies that that the proxy server uses Socks5 protocol.
const int ProxyType_Http = 2; 'Specifies that that the proxy server uses Http protocol. 

Certificate.Load, Certificate.LoadFromFile

[Visual Basic 6.0/VBScript]
Const CRYPT_MACHINE_KEYSET = 32 'use machine keyset
Const CRYPT_USER_KEYSET = 4096 'use user keyset

Certificate.FindSubject

[Visual Basic 6.0/VBScript]
Const CERT_SYSTEM_STORE_CURRENT_USER = 65536 'find in current user storage
Const CERT_SYSTEM_STORE_LOCAL_MACHINE = 131072 'find in current machine storage

MailReport_ReportType

[Visual Basic 6.0/VBScript]
Const FailureReport = 0 'Specifies that the email is a failure delivery report.
Const DeliveryReceipt = 1 'Specifies that the email is a delivery success report(delivery receipt).
Const ReadReceipt = 2 'Specifies that the email is a read receipt.

[Visual C++]
const int FailureReport = 0; 'Specifies that the email is a failure delivery report.
const int DeliveryReceipt = 1; 'Specifies that the email is a delivery success report(delivery receipt).
const int ReadReceipt = 2; 'Specifies that the email is a read receipt.