diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-07-11 20:58:06 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-07-11 22:00:08 +0200 |
| commit | 59ebe39812858ba37e83ab0ee886f676980d472d (patch) | |
| tree | 321863def25ef1148b27881adff1836b6c23ad1e /docs/ref | |
| parent | 684a606a4ea21de6d1cc59b69f43b3a133672d59 (diff) | |
Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backend
Thanks dj.facebook at gmail.com for the report and initial patch
and Areski Belaid and senko for improvements.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 8b069579ba..c970311342 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1055,6 +1055,26 @@ EMAIL_USE_TLS Default: ``False`` Whether to use a TLS (secure) connection when talking to the SMTP server. +This is used for explicit TLS connections, generally on port 587. If you are +experiencing hanging connections, see the implicit TLS setting +:setting:`EMAIL_USE_SSL`. + +.. setting:: EMAIL_USE_SSL + +EMAIL_USE_SSL +------------- + +.. versionadded:: 1.7 + +Default: ``False`` + +Whether to use an implicit TLS (secure) connection when talking to the SMTP +server. In most email documentation this type of TLS connection is referred +to as SSL. It is generally used on port 465. If you are experiencing problems, +see the explicit TLS setting :setting:`EMAIL_USE_TLS`. + +Note that :setting:`EMAIL_USE_TLS`/:setting:`EMAIL_USE_SSL` are mutually +exclusive, so only set one of those settings to ``True``. .. setting:: FILE_CHARSET |
