ast: mobile - avoid short ring cut off

This commit is contained in:
mpmc 2023-07-07 11:04:08 +01:00
parent 14bc7fa9a0
commit b0277cf3b5
1 changed files with 5 additions and 2 deletions

View File

@ -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()