Discuss this help topic in SecureBlackbox Forum
Specifies POP3 authorization methods
Declaration
[C#/Java]
TSBPOP3Authorization = short;
const short popUSER = 1;
const short popAPOP = 2;
const short popSASL = 4;
[VB.NET]
TSBPOP3Authorization As SmallInt
Const popUSER As SmallInt = 1
Const popAPOP As SmallInt = 2
Const popSASL As SmallInt = 4
[Pascal]
TSBPOP3Authorization = (popUSER, popAPOP, popSASL);
[C++]
typedef uint8_t TSBPOP3AuthorizationRaw;
typedef enum { popUSER = 0, popAPOP = 1, popSASL = 2 } TSBPOP3Authorization;
typedef uint32_t TSBPOP3AuthorizationsRaw;
typedef enum { f_popUSER = 1, f_popAPOP = 2, f_popSASL = 4 } TSBPOP3Authorizations;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPOP3Client
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum