diff options
Diffstat (limited to 'plugins/mod_pep.lua')
-rw-r--r-- | plugins/mod_pep.lua | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 63cfe562..e416fe8b 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -176,28 +176,6 @@ function get_pep_service(username) set_affiliation = false; }; - subscriber = { - 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; - unsubscribe_other = false; - get_subscription_other = false; - get_subscriptions_other = false; - - be_subscribed = true; - be_unsubscribed = true; - - set_affiliation = false; - }; publisher = { create = false; publish = true; @@ -271,7 +249,7 @@ function get_pep_service(username) access_models = { presence = function (jid) if subscription_presence(username, jid) then - return "subscriber"; + return "none"; end return "restricted"; end; |