mod_pubsub: Explicitly enable persistence by default to preserve behavior

Since nodes were always persistent according to the XEP-0060 definition.
Whether data is stored in memory or on disk was not what this setting
was meant for.
This commit is contained in:
Kim Alvefur 2021-07-21 23:35:08 +02:00
parent 3756e3c835
commit 8116134258
3 changed files with 5 additions and 2 deletions

View file

@ -203,6 +203,9 @@ function module.load()
autocreate_on_subscribe = autocreate_on_subscribe;
expose_publisher = expose_publisher;
node_defaults = {
["persist_items"] = true;
};
nodestore = node_store;
itemstore = create_simple_itemstore;
broadcaster = simple_broadcast;

View file

@ -47,7 +47,7 @@ Alice receives:
<value>20</value>
</field>
<field var="pubsub#persist_items" label="Persist items to storage" type="boolean">
<value>0</value>
<value>1</value>
</field>
<field var="pubsub#access_model" label="Specify the subscriber model" type="list-single">
<option label="authorize">

View file

@ -132,7 +132,7 @@ local default_config = {
local default_config_mt = { __index = default_config };
local default_node_config = {
["persist_items"] = false;
["persist_items"] = true;
["max_items"] = 20;
["access_model"] = "open";
["publish_model"] = "publishers";