plugins/mod_pep.lua
changeset 9163 e13a1a0b0107
parent 9161 37e814a680ab
child 9182 82fad995a149
--- a/plugins/mod_pep.lua	Wed Aug 08 21:49:41 2018 +0200
+++ b/plugins/mod_pep.lua	Wed Aug 08 23:20:07 2018 +0100
@@ -171,12 +171,9 @@
 		access_models = {
 			presence = function (jid)
 				if subscription_presence(username, jid) then
-					-- This is their affiliation level which determines
-					-- permissions, it is acceptable to be a subscriber
-					-- with no affiliation.
-					return "none";
+					return "member";
 				end
-				return "restricted";
+				return "outcast";
 			end;
 		};