diff options
author | Lance Stout <lancestout@gmail.com> | 2012-09-28 11:02:57 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-09-28 11:02:57 -0700 |
commit | a2c60a4911c64a8b40c39dfb9d74ed0eaed0e9b3 (patch) | |
tree | 40d99fd4b547e4f81e2c9c2b29682c6bb7ac7a06 /sleekxmpp/basexmpp.py | |
parent | 73ce9a5eccb5fea6f9a6dd72410cdada2a43347f (diff) | |
parent | ee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1 (diff) | |
download | slixmpp-a2c60a4911c64a8b40c39dfb9d74ed0eaed0e9b3.tar.gz slixmpp-a2c60a4911c64a8b40c39dfb9d74ed0eaed0e9b3.tar.bz2 slixmpp-a2c60a4911c64a8b40c39dfb9d74ed0eaed0e9b3.tar.xz slixmpp-a2c60a4911c64a8b40c39dfb9d74ed0eaed0e9b3.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r-- | sleekxmpp/basexmpp.py | 11 |
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: |