fix(asterisk): update telecom route and recording fallback

This commit is contained in:
Yera All
2026-04-17 12:16:51 +05:00
parent 4adaf192fb
commit feb0ce01e2
5 changed files with 140 additions and 1 deletions
+13
View File
@@ -117,3 +117,16 @@ exten => h,1,StopMixMonitor()
[mvpcc-operators]
exten => _X.,1,Dial(PJSIP/${EXTEN},30)
same => n,Hangup()
[from-telecom]
; Incoming calls from Telecom.kz SIP account 86205414 / DID 87273901485.
; Route them directly to the AI-first entrypoint 7100.
exten => 86205414,1,NoOp(Incoming from telecom.kz DID 87273901485 -> AI)
same => n,Set(CALLERID(dnid)=87273901485)
same => n,Goto(from-softphones,7100,1)
exten => 87273901485,1,NoOp(Incoming from telecom.kz DID 87273901485 -> AI)
same => n,Goto(from-softphones,7100,1)
exten => _X.,1,NoOp(Incoming from telecom.kz, DID=${EXTEN})
same => n,Goto(from-softphones,7100,1)