Docs: describe operation of continued-connection TLS
authorJeremy Harris <jgh146exb@wizmail.org>
Fri, 28 Apr 2017 23:19:45 +0000 (00:19 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Fri, 28 Apr 2017 23:19:45 +0000 (00:19 +0100)
doc/doc-docbook/spec.xfpt

index e5c433fbbfc48813f34cba123c2db0e1055f2afc..9737aed05a29fc9de557a6c3ffd3fc639acf8e38 100644 (file)
@@ -27651,13 +27651,22 @@ built, then you have SNI support).
          "SECTmulmessam"
 .cindex "multiple SMTP deliveries with TLS"
 .cindex "TLS" "multiple message deliveries"
+.new
 Exim sends multiple messages down the same TCP/IP connection by starting up
 an entirely new delivery process for each message, passing the socket from
 one process to the next. This implementation does not fit well with the use
 of TLS, because there is quite a lot of state information associated with a TLS
 connection, not just a socket identification. Passing all the state information
-to a new process is not feasible. Consequently, Exim shuts down an existing TLS
-session before passing the socket to a new process. The new process may then
+to a new process is not feasible. Consequently, for sending using TLS Exim
+starts an additional proxy process for handling the encryption, piping the
+unencrypted data stream from and to the delivery processes.
+
+An older mode of operation can be enabled on a per-host basis by the
+&%hosts_noproxy_tls%& option on the &(smtp)& transport.  If the host matches
+this list the proxy process descibed above is not used; instead Exim
+.wen
+shuts down an existing TLS session being run by the delivery process
+before passing the socket to a new process. The new process may then
 try to start a new TLS session, and if successful, may try to re-authenticate
 if AUTH is in use, before sending the next message.