You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which is old and people are dropping support for it. For whatever reasons, my Prosody on Debian buster has stopped supporting TLS 1.0 too and my bots are no longer able to connect to it.
Using ssl.PROTOCOL_TLS will have broader support but it requires Python >= 3.6. Using ssl.PROTOCOL_TLSv1_2 will support Python 3.4 but is not future-proof.
The text was updated successfully, but these errors were encountered:
This line specifies to only use TLS 1.0:
pyxmpp2/pyxmpp2/streamtls.py
Line 181 in 14a40a3
Which is old and people are dropping support for it. For whatever reasons, my Prosody on Debian buster has stopped supporting TLS 1.0 too and my bots are no longer able to connect to it.
Using
ssl.PROTOCOL_TLS
will have broader support but it requires Python >= 3.6. Usingssl.PROTOCOL_TLSv1_2
will support Python 3.4 but is not future-proof.The text was updated successfully, but these errors were encountered: