plugins/autosubscribe.lua

Tue, 30 Apr 2013 18:19:00 +0200

author
Kim Alvefur <zash@zash.se>
date
Tue, 30 Apr 2013 18:19:00 +0200
changeset 100
f90ead53573a
parent 19
a698d64fc929
permissions
-rw-r--r--

plugins.slap: Fix the grammar, once and for all!


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