aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-08-15 16:35:14 +0200
committerKim Alvefur <zash@zash.se>2022-08-15 16:35:14 +0200
commit2294d8b8e08fbf75985bd976bc32c79293a478ef (patch)
treeba6936ecc853c0da8fd3f54f9fcdfe0a6388bc52 /plugins
parentcbff90a7ac5236a86accefdfd501147a1b5007fc (diff)
downloadprosody-2294d8b8e08fbf75985bd976bc32c79293a478ef.tar.gz
prosody-2294d8b8e08fbf75985bd976bc32c79293a478ef.zip
mod_time: Remove obsolete XEP-0090 support
Deprecated even before Prosody even started, obsolete for over a decade.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_time.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/mod_time.lua b/plugins/mod_time.lua
index 72421f85..c9197799 100644
--- a/plugins/mod_time.lua
+++ b/plugins/mod_time.lua
@@ -9,7 +9,6 @@
local st = require "util.stanza";
local datetime = require "util.datetime".datetime;
local now = require "util.time".now;
-local legacy = require "util.datetime".legacy;
-- XEP-0202: Entity Time
@@ -26,16 +25,3 @@ end
module:hook("iq-get/bare/urn:xmpp:time:time", time_handler);
module:hook("iq-get/host/urn:xmpp:time:time", time_handler);
--- XEP-0090: Entity Time (deprecated)
-
-module:add_feature("jabber:iq:time");
-
-local function legacy_time_handler(event)
- local origin, stanza = event.origin, event.stanza;
- origin.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"})
- :tag("utc"):text(legacy()));
- return true;
-end
-
-module:hook("iq-get/bare/jabber:iq:time:query", legacy_time_handler);
-module:hook("iq-get/host/jabber:iq:time:query", legacy_time_handler);