From 4ef68bb7e5ff0f0844ace8e898f84fd81ceea637 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 15 May 2005 13:17:05 +0000 Subject: [PATCH] important bug in xmpppy does not allow us to default to tls True. In fact big stanzas result in disconnection. So until it fixed, TLS is *highly* discouraged [maybe we should disable it via GUI] cause I was even able to get disconnection when sending huge text [so not only disco related but allover] --- src/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.py b/src/common/config.py index 409fd0e54..a344263ff 100644 --- a/src/common/config.py +++ b/src/common/config.py @@ -112,7 +112,7 @@ class Config: 'proxypass': [ opt_str, '' ], 'keyid': [ opt_str, '' ], 'keyname': [ opt_str, '' ], - 'usetls': [ opt_bool, True ], + 'usetls': [ opt_bool, False ], 'savegpgpass': [ opt_bool, False ], 'gpgpassword': [ opt_str, '' ], 'sync_with_global_status': [ opt_bool, True ],