# HG changeset patch # User Kim Alvefur # Date 1533754514 -7200 # Node ID fd50e9c8c417766e0f70417b79bd0aed45ffaf1e # Parent 26c5a4a14905b275a92041542b69025b4e9752ed mod_pep: Change default affiliation in the "presence" access model to "restricted" for non-contacts This lets us loosen the restrictions of the "none" affiliation, so that the "open" access model allows anyone basic access. diff -r 26c5a4a14905 -r fd50e9c8c417 plugins/mod_pep.lua --- a/plugins/mod_pep.lua Wed Aug 08 09:29:32 2018 +0200 +++ b/plugins/mod_pep.lua Wed Aug 08 20:55:14 2018 +0200 @@ -273,6 +273,7 @@ if subscription_presence(username, jid) then return "subscriber"; end + return "restricted"; end; };