1

I want to use exim4 as a smarthost to send email using an smtp mail account over ssl. I've seen the hosts_require_tls option, but I need SSL and not TLS. How should I do this?

3
  • 6
    What do you mean by “I need SSL and not TLS”? SSL and TLS are the same family of protocols, SSL is the name for the older versions and TLS is the name for the newer versions. Read en.wikipedia.org/SSL (which is also en.wikipedia.org/TLS). Commented Jun 16, 2012 at 23:41
  • I knew that TLS is the same family, I just didn't know that they are compatible / TLS also means SSL support. As TLS is newer I assumed it would only support TLS. Commented Jun 21, 2012 at 11:50
  • @Gilles, unfortauntely, many people mean STARTTLS when they use the word TLS (completely ignoring the word "START", which is the important part, of course). stefan.at.wpf, you need to find out whether your server supports SMTPS or SMTP+STARTTLS, or both (see this on SF). Commented Jul 26, 2012 at 22:41

1 Answer 1

2

You can set the protocol option in your smtp transport to smtps. This will cause Exim to connect out on port 465, and initiate TLS as soon as it connects to the remote server.

See the documentation for protocol at http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_smtp_transport.html for more information.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.