Fixed typo in doc: tls_1_2 => tls1_2

tls1_2 matches the string in offlineimap/bundled_imaplib2.py and
offlineimap fails when using tls_1_2:
("Invalid SSL version 'tls_1_2' requested for tls_version 'tls_secure'",)

Signed-off-by: Maximilian Kaul <maximilian+git@maximiliankaul.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Maximilian Kaul 2017-04-27 17:33:19 +02:00 committed by Nicolas Sebrecht
parent e8f0e82f6c
commit 4ac44071b6

View File

@ -739,7 +739,7 @@ remotehost = examplehost
# #
# It is best to leave this unset, in which case the correct version will be # It is best to leave this unset, in which case the correct version will be
# automatically detected. In rare cases, it may be necessary to specify a # automatically detected. In rare cases, it may be necessary to specify a
# particular version from: tls1, tls1_1, tls_1_2, ssl3, ssl23. # particular version from: tls1, tls1_1, tls1_2, ssl3, ssl23.
# #
# tls1_1 and tls1_2 are available with OpenSSL since v1.0.1. # tls1_1 and tls1_2 are available with OpenSSL since v1.0.1.
# #