summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-10-08 22:40:03 +0100
committermathieui <mathieui@mathieui.net>2016-10-09 17:06:33 +0200
commitf8d5fa9b1cc85f1565d475ceedb6ced9652351b7 (patch)
treed13449e298aeae543c28d6968446b361622987cc /poezio
parent4ad066b39bd31f1525570bd4ec70c35380e7c15d (diff)
downloadpoezio-f8d5fa9b1cc85f1565d475ceedb6ced9652351b7.tar.gz
poezio-f8d5fa9b1cc85f1565d475ceedb6ced9652351b7.tar.bz2
poezio-f8d5fa9b1cc85f1565d475ceedb6ced9652351b7.tar.xz
poezio-f8d5fa9b1cc85f1565d475ceedb6ced9652351b7.zip
Remove the resource option from the configuration.
It’s considered bad practice nowadays to force a specific resource, it can lead to presence leaks or reconnection loops so should be avoided. Moreover this was already possible in the jid option, by setting it to user@domain/resource, setting it would append it a second time in that case.
Diffstat (limited to 'poezio')
-rw-r--r--poezio/config.py1
-rw-r--r--poezio/connection.py6
2 files changed, 0 insertions, 7 deletions
diff --git a/poezio/config.py b/poezio/config.py
index 15380b8b..f2002382 100644
--- a/poezio/config.py
+++ b/poezio/config.py
@@ -95,7 +95,6 @@ DEFAULT_CONFIG = {
'private_auto_response': '',
'remote_fifo_path': './',
'request_message_receipts': True,
- 'resource': '',
'rooms': '',
'roster_group_sort': 'name',
'roster_show_offline': False,
diff --git a/poezio/connection.py b/poezio/connection.py
index 7b12a6eb..be030497 100644
--- a/poezio/connection.py
+++ b/poezio/connection.py
@@ -32,8 +32,6 @@ class Connection(slixmpp.ClientXMPP):
"""
__init = False
def __init__(self):
- resource = config.get('resource')
-
keyfile = config.get('keyfile')
certfile = config.get('certfile')
@@ -43,8 +41,6 @@ class Connection(slixmpp.ClientXMPP):
# depending on this setting
self.anon = False
jid = '%s' % config.get('jid')
- if resource:
- jid = '%s/%s'% (jid, resource)
password = config.get('password')
eval_password = config.get('eval_password')
if not password and not eval_password and not (keyfile and certfile):
@@ -63,8 +59,6 @@ class Connection(slixmpp.ClientXMPP):
else: # anonymous auth
self.anon = True
jid = config.get('server')
- if resource:
- jid = '%s/%s' % (jid, resource)
password = None
jid = safeJID(jid)
# TODO: use the system language