# HG changeset patch # User Kim Alvefur # Date 1416315579 -3600 # Node ID eed7db9f3157c3341fd065279576b72e9ad3bb7f # Parent 67fafebdceb7227657ce24fb176492114208b2e8 mod_mam_muc, mod_http_muc_log: Change store name from 'archive2' to 'muc_log' to distinguish it from personal MAM archives. Old data will require migration. diff -r 67fafebdceb7 -r eed7db9f3157 mod_http_muc_log/mod_http_muc_log.lua --- a/mod_http_muc_log/mod_http_muc_log.lua Tue Nov 18 13:05:04 2014 +0100 +++ b/mod_http_muc_log/mod_http_muc_log.lua Tue Nov 18 13:59:39 2014 +0100 @@ -6,7 +6,7 @@ local it = require"util.iterators"; local gettime = require"socket".gettime; -local archive = module:open_store("archive2", "archive"); +local archive = module:open_store("muc_log", "archive"); -- Support both old and new MUC code local mod_muc = module:depends"muc"; diff -r 67fafebdceb7 -r eed7db9f3157 mod_mam_muc/mod_mam_muc.lua --- a/mod_mam_muc/mod_mam_muc.lua Tue Nov 18 13:05:04 2014 +0100 +++ b/mod_mam_muc/mod_mam_muc.lua Tue Nov 18 13:59:39 2014 +0100 @@ -44,7 +44,7 @@ local log_all_rooms = module:get_option_boolean("muc_log_all_rooms", false); local log_by_default = module:get_option_boolean("muc_log_by_default", true); -local archive_store = "archive2"; +local archive_store = "muc_log"; local archive = module:open_store(archive_store, "archive"); if not archive or archive.name == "null" then module:log("error", "Could not open archive storage");