summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0184/receipt.py
AgeCommit message (Collapse)Author
2012-07-26Enhance plugin config with attribute accessors.Lance Stout
This makes updating the config after plugin initialization much easier.
2012-07-23old clients still support xep-184/1.0 versionekini
Now psi (and probably miranda) correctly receive delivery receipts.
2012-07-10Update plugins to use session_bind handler for disco, and use plugin_endLance Stout
2012-06-19PEP8 formatting updates.Lance Stout
2012-03-16Expand support for XEP-0184.Lance Stout
New stanza interfaces: Adding a message receipt request: msg['request_receipt'] = True Adding a message receipt: msg['receipt'] = '123-24234' Retrieving the acked message ID: ack_id = msg['receipt'] print(ack_id) '123-24234' New configuration options: auto_ack: If True, auto reply to messages that request receipts. Defaults to True auto_request: If True, auto add receipt requests to appropriate outgoing messages. Defaults to False