mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-18 17:15:05 +00:00
Fix voicemail remote_access
This commit is contained in:
@@ -218,13 +218,6 @@
|
||||
vm_say_date_time = "before";
|
||||
end
|
||||
|
||||
remote_access = '';
|
||||
if (settings['voicemail']['remote_access'] ~= nil) then
|
||||
if (settings['voicemail']['remote_access']['boolean'] ~= nil) then
|
||||
remote_access = settings['voicemail']['remote_access']['boolean'];
|
||||
end
|
||||
end
|
||||
|
||||
password_complexity = '';
|
||||
if (settings['voicemail']['password_complexity'] ~= nil) then
|
||||
if (settings['voicemail']['password_complexity']['boolean'] ~= nil) then
|
||||
|
||||
@@ -64,6 +64,7 @@
|
||||
local message_silence_threshold = settings:get('voicemail', 'message_silence_threshold', 'numeric') or 200;
|
||||
local message_silence_seconds = settings:get('voicemail', 'message_silence_seconds', 'numeric') or 3;
|
||||
local email_queue_enabled = settings:get('email_queue', 'enabled', 'boolean') or "false";
|
||||
local remote_access = settings:get('voicemail', 'remote_access', 'boolean') or "false";
|
||||
|
||||
--get recording instructions and options settings
|
||||
local sql = [[SELECT
|
||||
|
||||
Reference in New Issue
Block a user