diff options
author | Kim Alvefur <zash@zash.se> | 2021-10-19 18:11:50 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-10-19 18:11:50 +0200 |
commit | 4b05d0f2402475fea608fd3e48a96364bc6da4f2 (patch) | |
tree | 8553f7e8e4b57c64b2599666f87b5e3ca14cc0b7 /util | |
parent | 3e55057a8574af83e42ec96041283111e34ef7d4 (diff) | |
download | prosody-4b05d0f2402475fea608fd3e48a96364bc6da4f2.tar.gz prosody-4b05d0f2402475fea608fd3e48a96364bc6da4f2.zip |
mod_pubsub,mod_pep: Implement 'send_last_published_item' option #1436
Default left as 'never' in mod_pubsub to preserve the previous behavior.
Unclear if this is desirable, but can always be changed later.
In mod_pep this allows turning off the automatic resending of most
recent item.
Diffstat (limited to 'util')
-rw-r--r-- | util/pubsub.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua index e23818b8..75620a42 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -136,6 +136,7 @@ local default_node_config = { ["max_items"] = 20; ["access_model"] = "open"; ["publish_model"] = "publishers"; + ["send_last_published_item"] = "never"; }; local default_node_config_mt = { __index = default_node_config }; |