Description
-
These constant define if SSL encryption is used for the server. You
should set wodPop3Server.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
wodPop3Server.
SecurityAllowed will allow user to
issue STLS 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 wodPop3Server. Users that connect to the server
will establish SSL connection prior to exchanging any data between
the server and tehmselves. STLS command is not used anymore because
connection is already secured. Usually, servers using this type of
SSL security are listening on port 995. 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. |
|