poezio/plugins/spam.py

24 lines
584 B
Python
Raw Normal View History

2013-05-06 19:42:53 +00:00
"""
Add a subtle little advertising in your messages.
Configuration
-------------
.. code-block:: ini
[spam]
ad = Im a happy poezio user. Get it at http://poezio.eu
2013-05-06 19:42:53 +00:00
"""
from poezio.plugin import BasePlugin
2013-05-06 19:42:53 +00:00
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.advert)
self.api.add_event_handler('conversation_say', self.advert)
self.api.add_event_handler('private_say', self.advert)
def advert(self, msg, tab):
2013-05-06 19:48:18 +00:00
msg['body'] = "%s\n\n%s" % (msg['body'], self.config.get("ad", "Sent from poezio"))