Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-06-06 22:24:27 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-06-06 22:24:27 +0300
commit53e556774fbad7d5b1a3e0679ebe806324d3a1e2 (patch)
treee08b0c10109804226f7239ed6f883efcf7b16301
parent8a66c10084471364f2a3f90538344315e022b2cd (diff)
Remove unused or old config values
-rw-r--r--src/common/connection.py3
-rw-r--r--src/config.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/src/common/connection.py b/src/common/connection.py
index cd0ffbbb5..b9d5a3aa5 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -1132,7 +1132,7 @@ class Connection(CommonConnection, ConnectionHandlers):
Start a connection to the Jabber server
Returns connection, and connection type ('tls', 'ssl', 'plain', '') data
- MUST contain hostname, usessl, proxy, use_custom_host, custom_host (if
+ MUST contain hostname, proxy, use_custom_host, custom_host (if
use_custom_host), custom_port (if use_custom_host)
"""
if self.connection:
@@ -1164,7 +1164,6 @@ class Connection(CommonConnection, ConnectionHandlers):
custom_p = data['custom_port']
else:
hostname = gajim.config.get_per('accounts', self.name, 'hostname')
- usessl = gajim.config.get_per('accounts', self.name, 'usessl')
self.try_connecting_for_foo_secs = gajim.config.get_per('accounts',
self.name, 'try_connecting_for_foo_secs')
proxy = helpers.get_proxy_info(self.name)
diff --git a/src/config.py b/src/config.py
index 5573a2f1c..38b607c9c 100644
--- a/src/config.py
+++ b/src/config.py
@@ -4017,14 +4017,12 @@ class AccountCreationWizardWindow:
config['hostname'] = server
config['savepass'] = savepass
config['password'] = password
- config['resource'] = 'Gajim'
config['anonymous_auth'] = anonymous
config['priority'] = 5
config['autoconnect'] = True
config['no_log_for'] = ''
config['sync_with_global_status'] = True
config['proxy'] = ''
- config['usessl'] = False
config['use_custom_host'] = False
config['custom_port'] = 0
config['custom_host'] = ''