Description
- These constant define if SSL encryption is used for the
server. You should set wodImapServer.Security
with these values.
SecurityNone means that SSL cannot be
used, and trying to use it will generate an error. This is
default value, to preserve compatibility with older versions
of wodImapServer.
SecurityAllowed will allow user to
issue STARTTLS command to create secured connection, but is
not required. In order to use this constant, Certificate
property must be set with valid certificate.
SecurityRequired means that user must
create secured connection using STLS command before he tries
to authenticate to the server. In order to use this constant,
Certificate
property must be set with valid certificate.
SecurityImplicit will create internal
SSL 'wrapper' over wodImapServer. Users that connect
to the server will establish SSL connection prior to
exchanging any data between the server and tehmselves.
STARTTLS command is not used anymore because connection is
already secured. Usually, servers using this type of SSL
security are listening on port 993. In order to use this
constant, Certificate property must be set with valid
certificate.
Members
-
|
SecurityNone |
0 |
No security required. |
|
SecurityAllowed |
1 |
Security allowed, but not
required. |
|
SecurityRequired |
2 |
Security is required. |
|
SecurityImplicit |
3 |
Implicit security through
SSL wrapper. |
|