Update index.lua

Improve security for voicemail_authorized = true;
This commit is contained in:
FusionPBX 2016-11-06 01:01:55 -06:00 committed by GitHub
parent aa1001be8e
commit 7d113bf8eb
1 changed files with 5 additions and 1 deletions

View File

@ -271,7 +271,11 @@
if (voicemail_id) then
if (voicemail_authorized) then
if (voicemail_authorized == "true") then
--skip the password check
if (voicemail_id == sip_from_user or voicemail_id == sip_number_alias) then
--skip the password check
else
check_password(voicemail_id, password_tries);
end
else
check_password(voicemail_id, password_tries);
end