mod_muc_mam: Disable presence logging by default

This commit is contained in:
Kim Alvefur 2018-07-09 00:54:03 +02:00
parent 3322ba6449
commit b15877ac0f

View file

@ -357,7 +357,7 @@ module:hook("muc-add-history", function (event)
save_to_history(room, stanza);
end);
if module:get_option_boolean("muc_log_presences", true) then
if module:get_option_boolean("muc_log_presences", false) then
module:hook("muc-occupant-joined", function (event)
save_to_history(event.room, st.stanza("presence", { from = event.nick }):tag("x", { xmlns = "http://jabber.org/protocol/muc" }));
end);