plugins/autosubscribe.lua

Tue, 21 Oct 2014 17:53:04 +0200

author
Kim Alvefur <zash@zash.se>
date
Tue, 21 Oct 2014 17:53:04 +0200
changeset 114
d11cf84975c5
parent 19
a698d64fc929
permissions
-rw-r--r--

plugins.ietf: HTTPS URLs (thanks darkrain)


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