Software /
code /
prosody-modules
Changeset
1571:eed7db9f3157
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.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 18 Nov 2014 13:59:39 +0100 |
parents | 1570:67fafebdceb7 |
children | 1572:1aa894db3585 |
files | mod_http_muc_log/mod_http_muc_log.lua mod_mam_muc/mod_mam_muc.lua |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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";
--- 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");