aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-27 17:30:16 +0200
committerKim Alvefur <zash@zash.se>2017-05-27 17:30:16 +0200
commit84bdb8e16589bdeb9e4fa4f501c25e73a1ce2452 (patch)
tree04a1c3f3af54f4b092c83cce4df035594f3b6ac1 /plugins
parenteb231e9eab6b279246a50f3d0f2bcf6e3c5f529a (diff)
parent4afac948b9edc08d68b09f0dfe76be82a2cfb6f9 (diff)
downloadprosody-84bdb8e16589bdeb9e4fa4f501c25e73a1ce2452.tar.gz
prosody-84bdb8e16589bdeb9e4fa4f501c25e73a1ce2452.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_disco.lua1
-rw-r--r--plugins/mod_watchregistrations.lua3
2 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index b135d46d..10eb632d 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -175,6 +175,7 @@ module:hook("iq/bare/http://jabber.org/protocol/disco#info:query", function(even
end
local reply = st.reply(stanza):tag('query', {xmlns='http://jabber.org/protocol/disco#info'});
if not reply.attr.from then reply.attr.from = origin.username.."@"..origin.host; end -- COMPAT To satisfy Psi when querying own account
+ reply:tag('identity', {category='account', type='registered'}):up();
module:fire_event("account-disco-info", { origin = origin, reply = reply });
origin.send(reply);
return true;
diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua
index dc979b9a..82666b09 100644
--- a/plugins/mod_watchregistrations.lua
+++ b/plugins/mod_watchregistrations.lua
@@ -22,7 +22,8 @@ module:hook("user-registered", function (user)
:tag("body")
:text(registration_notification:gsub("%$(%w+)", function (v)
return user[v] or user.session and user.session[v] or nil;
- end));
+ end))
+ :up();
for jid in registration_watchers do
module:log("debug", "Notifying %s", jid);
message.attr.to = jid;