mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-01 17:53:49 +00:00
Update index.lua
Improve security for voicemail_authorized = true;
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user