# HG changeset patch # User Matthew Wild # Date 1301407070 -3600 # Node ID a99f82db692adda5b3bd3f5b3ab1f63bea15a6b4 # Parent 23b68616b6d826f2ea3fda95c3cab7bfb66338f3 mod_privacy: Remove unused function, sendUnavailable diff -r 23b68616b6d8 -r a99f82db692a plugins/mod_privacy.lua --- a/plugins/mod_privacy.lua Tue Mar 29 14:10:00 2011 +0100 +++ b/plugins/mod_privacy.lua Tue Mar 29 14:57:50 2011 +0100 @@ -45,28 +45,6 @@ end end -function sendUnavailable(origin, to, from) ---[[ example unavailable presence stanza - - Logged out - -]]-- - local presence = st.presence({from=from, type="unavailable"}); - presence:tag("status"):text("Logged out"); - - local node, host = jid_bare(to); - local bare = node .. "@" .. host; - - local user = bare_sessions[bare]; - if user then - for resource, session in pairs(user.sessions) do - presence.attr.to = session.full_jid; - module:log("debug", "send unavailable to: %s; from: %s", tostring(presence.attr.to), tostring(presence.attr.from)); - origin.send(presence); - end - end -end - function declineList(privacy_lists, origin, stanza, which) if which == "default" then if isAnotherSessionUsingDefaultList(origin) then