no more force_nonSASL option

This commit is contained in:
Yann Leboulanger 2005-06-01 12:33:29 +00:00
parent e05dc901d4
commit 9ad357ab3d
2 changed files with 1 additions and 3 deletions

View File

@ -119,7 +119,6 @@ class Config:
'keyid': [ opt_str, '' ],
'keyname': [ opt_str, '' ],
'usessl': [ opt_bool, False ],
'force_nonSASL': [ opt_bool, False ],
'savegpgpass': [ opt_bool, False ],
'gpgpassword': [ opt_str, '' ],
'sync_with_global_status': [ opt_bool, True ],

View File

@ -584,8 +584,7 @@ class Connection:
try:
#FIXME: blocking
auth = con.auth(name, self.password, resource, 1) #FIXME: non SASL doesn't work currently
# not gajim.config.get_per('accounts', self.name, 'force_nonSASL'))
auth = con.auth(name, self.password, resource, 1)
except IOError: #probably a timeout
self.connected = 0
self.dispatch('STATUS', 'offline')