From d2d04162146e6df454d67a4e48ee6655af1d6c0a Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 11 Mar 2013 17:54:29 +0100 Subject: Fix #1841 (User nickname) - add a use_pep_nick boolean option - use it as a nickname for roster contacts, but it does not supercede the user-defined handle - send a at the beginning of a normal chat - not implemented in MUC (wontfix) --- src/connection.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/connection.py') diff --git a/src/connection.py b/src/connection.py index 51fef78d..d5a393c5 100644 --- a/src/connection.py +++ b/src/connection.py @@ -74,6 +74,8 @@ class Connection(sleekxmpp.ClientXMPP): if config.get('receive_user_tune', 'true') != 'false': self.register_plugin('xep_0118') + if config.get('use_pep_nick', 'true') != 'false': + self.register_plugin('xep_0172') if config.get('send_poezio_info', 'true') == 'true': info = {'name':'poezio', 'version': options.version} -- cgit v1.2.3