# HG changeset patch # User Matthew Wild # Date 1533757090 -3600 # Node ID f06484110817342b78bbcf0c74fadc3e9dc034df # Parent ccd91fa828c44a3713119dae067142c76ae56c88 mod_pep: Remove "subscriber" affiliation in favour of "none" It ended up with identical capabilities to "none", and isn't a standard affiliation defined by XEP-0060 anyway. diff -r ccd91fa828c4 -r f06484110817 plugins/mod_pep.lua --- a/plugins/mod_pep.lua Wed Aug 08 21:03:37 2018 +0200 +++ b/plugins/mod_pep.lua Wed Aug 08 20:38:10 2018 +0100 @@ -176,28 +176,6 @@ 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 @@ access_models = { presence = function (jid) if subscription_presence(username, jid) then - return "subscriber"; + return "none"; end return "restricted"; end;