Difference between revisions of "Hooker:Email Security"
Jump to navigation
Jump to search
(Created page with "{{Up|Hooker}} Email security options allow the use of strong encryption when communicating with the (SMTP) mail server. == Security options == Available encryption options:...") |
(OpenSSL library) |
||
Line 22: | Line 22: | ||
Note: You should confirm the correct settings with your email service provider because they could be using a non-default configuration. | Note: You should confirm the correct settings with your email service provider because they could be using a non-default configuration. | ||
+ | |||
+ | == OpenSSL library == | ||
+ | |||
+ | The use of encryption options requires ''OpenSSL'' library to be installed on your system. | ||
+ | |||
+ | You need to put <tt>libssl32.dll</tt> and <tt>libeay32.dll</tt> from the ''OpenSSL'' package into one of these locations: | ||
+ | # Program directory. | ||
+ | # Windows directory. | ||
+ | # Any other location in the <tt>%PATH%</tt> environmental variable. | ||
+ | |||
+ | You can download ''OpenSSL'' library here: | ||
+ | : http://indy.fulgan.com/SSL/ | ||
+ | |||
+ | Note: Use the package that matches the architecture of the program, i.e. <tt>openssl-x.x.x-i386-win32.zip</tt>. | ||
[[Category:Hooker]] | [[Category:Hooker]] |
Revision as of 10:59, 27 August 2015
Email security options allow the use of strong encryption when communicating with the (SMTP) mail server.
Security options
Available encryption options:
- STARTTLS – Implicit encryption which allows a non-encrypted connection to be upgraded to an encrypted connection. [1]
- SSL/TLS – Explicit encryption which is to be used with servers which expect the entire communication to be encrypted from the start. []
Default SMTP ports:
Security option | Default port |
---|---|
None | 25 |
STARTTLS | 25 |
SSL/TLS | 465 |
Note: You should confirm the correct settings with your email service provider because they could be using a non-default configuration.
OpenSSL library
The use of encryption options requires OpenSSL library to be installed on your system.
You need to put libssl32.dll and libeay32.dll from the OpenSSL package into one of these locations:
- Program directory.
- Windows directory.
- Any other location in the %PATH% environmental variable.
You can download OpenSSL library here:
Note: Use the package that matches the architecture of the program, i.e. openssl-x.x.x-i386-win32.zip.