summaryrefslogtreecommitdiff
path: root/sleekxmpp/basexmpp.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-09-25 12:26:56 -0700
committerLance Stout <lancestout@gmail.com>2012-09-25 12:26:56 -0700
commitb5c669bdff4111c5754f237d13224ec1ee1d595a (patch)
tree2c5a1e35ed4d3d962b93cf3f40c2efb3aa6734e2 /sleekxmpp/basexmpp.py
parente449dce65c0d267c4d3206b6f9ac2e89807192bc (diff)
downloadslixmpp-b5c669bdff4111c5754f237d13224ec1ee1d595a.tar.gz
slixmpp-b5c669bdff4111c5754f237d13224ec1ee1d595a.tar.bz2
slixmpp-b5c669bdff4111c5754f237d13224ec1ee1d595a.tar.xz
slixmpp-b5c669bdff4111c5754f237d13224ec1ee1d595a.zip
Add options to auto add ID values to message and presence stanzas.
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r--sleekxmpp/basexmpp.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py
index 244d19c5..55250751 100644
--- a/sleekxmpp/basexmpp.py
+++ b/sleekxmpp/basexmpp.py
@@ -114,6 +114,17 @@ class BaseXMPP(XMLStream):
#: ``'to'`` and ``'from'`` JIDs of stanzas.
self.is_component = False
+ #: Messages may optionally be tagged with ID values. Setting
+ #: :attr:`use_message_ids` to `True` will assign all outgoing
+ #: messages an ID. Some plugin features require enabling
+ #: this option.
+ self.use_message_ids = False
+
+ #: Presence updates may optionally be tagged with ID values.
+ #: Setting :attr:`use_message_ids` to `True` will assign all
+ #: outgoing messages an ID.
+ self.use_presence_ids = False
+
#: The API registry is a way to process callbacks based on
#: JID+node combinations. Each callback in the registry is
#: marked with: