Discuss this help topic in SecureBlackbox Forum
Specifies POP3 authorization methods
Declaration
[C#]
TSBPOP3Authorization = short;
const short popUSER = 0;
const short popAPOP = 1;
const short popSASL = 2;
[VB.NET]
TSBPOP3Authorization As Short
Const popUSER As Short = 0
Const popAPOP As Short = 1
Const popSASL As Short = 2
[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;
[PHP]
class TSBPOP3Authorization extends TSBBaseEnum {
const popUSER = 0;
const popAPOP = 1;
const popSASL = 2;
}
Possible values
Declared in
.NET:
- Namespace: SBPOP3Client
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum