diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-23 14:45:18 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-23 14:45:18 +0100 |
commit | ee51a6cf84d7f07a9b0780c02ad2d56e523df0eb (patch) | |
tree | 2732e0aaa92a91ab37e582be8fbb1c76d0643516 /plugins/mod_mam/mod_mam.lua | |
parent | 886603192223eeb71f83997c6958bf120cb1c530 (diff) | |
download | prosody-ee51a6cf84d7f07a9b0780c02ad2d56e523df0eb.tar.gz prosody-ee51a6cf84d7f07a9b0780c02ad2d56e523df0eb.zip |
mod_mam: Remove dead code (default will be filled in by mamprefs.lib)
Diffstat (limited to 'plugins/mod_mam/mod_mam.lua')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 7ea14502..55572867 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -35,10 +35,6 @@ local time_now = os.time; local m_min = math.min; local timestamp, timestamp_parse = require "util.datetime".datetime, require "util.datetime".parse; local default_max_items, max_max_items = 20, module:get_option_number("max_archive_query_results", 50); -local global_default_policy = module:get_option_string("default_archive_policy", true); -if global_default_policy ~= "roster" then - global_default_policy = module:get_option_boolean("default_archive_policy", global_default_policy); -end local strip_tags = module:get_option_set("dont_archive_namespaces", { "http://jabber.org/protocol/chatstates" }); local archive_store = module:get_option_string("archive_store", "archive"); @@ -222,10 +218,6 @@ local function shall_store(user, who) -- Below could be done by a metatable local default = prefs[false]; module:log("debug", "%s's default rule is %s", user, tostring(default)); - if default == nil then - default = global_default_policy; - module:log("debug", "Using global default rule, %s", tostring(default)); - end if default == "roster" then return has_in_roster(user, who); end |