aboutsummaryrefslogtreecommitdiffstats
path: root/util/pubsub.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/pubsub.lua')
-rw-r--r--util/pubsub.lua26
1 files changed, 24 insertions, 2 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua
index dc7c01e5..48f9af3e 100644
--- a/util/pubsub.lua
+++ b/util/pubsub.lua
@@ -10,7 +10,7 @@ local default_config = {
get_affiliation = function () end;
normalize_jid = function (jid) return jid; end;
capabilities = {
- restricted = {
+ outcast = {
be_subscribed = false;
be_unsubscribed = true;
};
@@ -24,6 +24,28 @@ local default_config = {
unsubscribe = true;
get_subscription = true;
get_subscriptions = true;
+ get_items = false;
+
+ subscribe_other = false;
+ unsubscribe_other = false;
+ get_subscription_other = false;
+ get_subscriptions_other = false;
+
+ be_subscribed = true;
+ be_unsubscribed = true;
+
+ set_affiliation = false;
+ };
+ member = {
+ create = false;
+ publish = false;
+ retract = false;
+ get_nodes = true;
+
+ subscribe = true;
+ unsubscribe = true;
+ get_subscription = true;
+ get_subscriptions = true;
get_items = true;
subscribe_other = false;
@@ -196,7 +218,7 @@ function service:get_default_affiliation(node, actor, action) -- luacheck: ignor
if access_model == "open" then
return "none";
elseif access_model == "whitelist" then
- return "restricted";
+ return "outcast";
end
if self.config.access_models then