plugins/autosubscribe.lua

Mon, 14 Mar 2011 15:38:20 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 14 Mar 2011 15:38:20 +0000
changeset 73
b9d319376f6d
parent 19
a698d64fc929
permissions
-rw-r--r--

uptime: Refactor reply text generation


function riddim.plugins.autosubscribe(bot)
	bot:hook("presence", function (presence)
		if presence.stanza.attr.type ~= 'subscribe' then return nil; end
		bot:send_presence(presence.sender.jid, 'subscribed');
		return false;
	end);
end

mercurial