Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Added comment for TLSv1.2 to be used with ejabberd #500

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/send_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ def start(self, event):
# If you are working with an OpenFire server, you may need
# to adjust the SSL version used:
# xmpp.ssl_version = ssl.PROTOCOL_SSLv3

# For ejabberd you may need to adjust to TLSv1.2:
# xmpp.ssl_version = ssl.PROTOCOL_TLSv1_2

# You will need to import import ssl for setting the SSL version.

# If you want to verify the SSL certificates offered by a server:
# xmpp.ca_certs = "path/to/ca/cert"
Expand Down