From b0277cf3b5347ea3ea0bf553fed2957573c35a63 Mon Sep 17 00:00:00 2001 From: mpmc Date: Fri, 7 Jul 2023 11:04:08 +0100 Subject: [PATCH] ast: mobile - avoid short ring cut off --- asterisk/conf/mobile/extensions.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/asterisk/conf/mobile/extensions.conf b/asterisk/conf/mobile/extensions.conf index 029112f..26a41f3 100644 --- a/asterisk/conf/mobile/extensions.conf +++ b/asterisk/conf/mobile/extensions.conf @@ -65,8 +65,11 @@ exten => _X.,1,Queue(${QUEUE_ONE},nr,,,120) same => n,Voicemail(${VOICEMAIL_BOX},) same => n,Hangup() -exten => ${TRUNK_ONE_CID},1,Queue(${QUEUE_ONE},nr,,,120) - same => n,Answer(200) +; Mobile networks have shorter rings - answer and place in queue. +exten => ${TRUNK_ONE_CID},1,Verbose(1, "info: mobile incoming") + same => n,Answer(100) + same => n,Playback(pls-hold-while-try) + same => n,Queue(${QUEUE_ONE},nr,,,60) same => n,Voicemail(${VOICEMAIL_BOX},) same => n,Hangup()