fritzy / SleekXMPP

Python 2.6+/3.1+ XMPP Library
http://groups.google.com/group/sleekxmpp-discussion
Other
1.1k stars 299 forks source link

Client connects with ssl3 instead of tls #343

Open auuron opened 9 years ago

auuron commented 9 years ago

use_tls = True, use_ssl = False

Checked on wireshark.

mathieui commented 9 years ago

use_tls and use_ssl are in fact not used to select the SSL/TLS version. The purpose of use_ssl is to enable old-style SSL connections (which is as far as I know is not useful except for google apps or extremely outdated servers and clients), while the purpose of use_tls is to enable XMPP STARTTLS described in RFC 6120

auuron commented 9 years ago

So is there a way to force using tls in my case? (or to disable ssl)