What's the best way to check if an SMTP server is SSL-enabled or not?
Follow-up question: How do I make it SSL-enabled if it's not yet SSL-enabled.
The OS is CentOS.
|
feedback
|
|
That depends whether you mean SSL or TLS.
In order to say how to enable SSL/TLS for your mail server you'll need to tell us what mail package you're using. | |||||||||
feedback
|
|
If you are running CentOS, you are probably using Sendmail. Install the Sendmail-mc package. Inside the /etc/mail/sendmail.mc are some directives for you to look into for TLS:
Once you have that working, you can enable Sendmail over SSL with something like so:
Oh, and block a bunch of time to play with it before you get it right. When I've done this, I've almost always had to run three instances of sendmail:
Each one had a separate config file. There should be a way to get the first two to run as the same instance listening on both ports, but I could never get it to work right. If you get big enough, these different instances can get run on different machines. | |||
|
feedback
|