diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-15 12:06:58 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-15 12:06:58 +0100 |
commit | c3ee82bcab05cdfc111087eec8fa7288afd13d02 (patch) | |
tree | faff616f45f6052b7832dfa99b61e3c1cd88c2da /plugins | |
parent | 5f73d6f0703f9c2f80575573ea92a44154c9f6dc (diff) | |
download | prosody-c3ee82bcab05cdfc111087eec8fa7288afd13d02.tar.gz prosody-c3ee82bcab05cdfc111087eec8fa7288afd13d02.zip |
mod_smacks: Remove unused event
Since nothing uses it. Some equivalent functionality may return in the
future.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_smacks.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_smacks.lua b/plugins/mod_smacks.lua index 793fc1e7..d9fcff76 100644 --- a/plugins/mod_smacks.lua +++ b/plugins/mod_smacks.lua @@ -382,7 +382,6 @@ function handle_a(origin, stanza) for _=1,math_min(handled_stanza_count,#queue) do local handled_stanza = t_remove(origin.outgoing_stanza_queue, 1); - module:fire_event("delivery/success", { session = origin, stanza = handled_stanza }); end origin.log("debug", "#queue = %d", #queue); |