From 97d3690aea8926f50eed2d5d0194114228c1e3ef Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 10 Jun 2013 23:49:10 +0200 Subject: Implement Message Carbons (XEP-280) - Add an option enable_carbons (defaults to false) - Make a disco on non-roster entites to determine if the message commes from a muc private chat or not. --- 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 d931283e..91b6c1b9 100644 --- a/src/connection.py +++ b/src/connection.py @@ -101,6 +101,8 @@ class Connection(sleekxmpp.ClientXMPP): if config.get('send_time', 'true') == 'true': self.register_plugin('xep_0202') self.register_plugin('xep_0224') + self.register_plugin('xep_0280') + self.register_plugin('xep_0297') self.register_plugin('xep_0308') def start(self): -- cgit v1.2.3