mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
3756e3c835
commit
8116134258
3 changed files with 5 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue