From 2955b8447e3ceaae5e5ca0e50c4796babe248021 Mon Sep 17 00:00:00 2001 From: markjcrane Date: Tue, 21 Jun 2016 18:35:05 -0600 Subject: [PATCH] Increase the voicemail greeting length that is allowed to 90 seconds. --- .../app/voicemail/resources/functions/record_greeting.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install/scripts/app/voicemail/resources/functions/record_greeting.lua b/resources/install/scripts/app/voicemail/resources/functions/record_greeting.lua index 9a5badeb12..41e7d1ee09 100644 --- a/resources/install/scripts/app/voicemail/resources/functions/record_greeting.lua +++ b/resources/install/scripts/app/voicemail/resources/functions/record_greeting.lua @@ -62,7 +62,7 @@ else --prepare to record the greeting if (session:ready()) then - max_len_seconds = 30; + max_len_seconds = 90; silence_seconds = 5; mkdir(voicemail_dir.."/"..voicemail_id); -- syntax is session:recordFile(file_name, max_len_secs, silence_threshold, silence_secs)