summaryrefslogtreecommitdiffstats
path: root/authenticator-freeswitch-vmail.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-02-09 14:34:23 +0000
committerTed Trask <ttrask01@yahoo.com>2012-02-09 14:34:23 +0000
commita739dc09b1795581095cd1eacae89fc538f29388 (patch)
tree76b91f37b188eb70b997d000e854ab63856bb02c /authenticator-freeswitch-vmail.lua
parentdd65620aa2737480f17e17b6e4863e0353f3b217 (diff)
downloadacf-freeswitch-vmail-a739dc09b1795581095cd1eacae89fc538f29388.tar.bz2
acf-freeswitch-vmail-a739dc09b1795581095cd1eacae89fc538f29388.tar.xz
Changed authenticator to not show vmail users when listing all users, but still can log in
Diffstat (limited to 'authenticator-freeswitch-vmail.lua')
-rw-r--r--authenticator-freeswitch-vmail.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/authenticator-freeswitch-vmail.lua b/authenticator-freeswitch-vmail.lua
index 34e5e24..74065d9 100644
--- a/authenticator-freeswitch-vmail.lua
+++ b/authenticator-freeswitch-vmail.lua
@@ -11,6 +11,7 @@ end
read_field = function(self, tabl, field)
result = a.read_field(self, tabl, field)
+--[[
if tabl == authenticator.usertable and field == "" then
-- authenticator is reading all users
local vmcontroller = self:new("freeswitch-vmail/vmail")
@@ -21,6 +22,7 @@ read_field = function(self, tabl, field)
end
vmcontroller:destroy()
end
+--]]
return result
end