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]
This commit is contained in:
parent
7b191bc2c4
commit
4ef68bb7e5
|
@ -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 ],
|
||||
|
|
Loading…
Reference in New Issue