All,I am trying to record the call using MixMonitor. exten=>_XXXX,n,MixMonitor(${EXTEN}.wav,b)What i want to do is-when first time a call is made to some number say 1100, a new file(1100.wav) is created. When call is made 2nd or 3rd time, no new f..
Author : Anurag Rana
I am initiating a call using call files. In h extension I am trying to collect the value of ANSWEREDTIME variable but it is returning null.While It works fine when call is not generated using call files instead is generated from softphone.any idea w..
Cant we use pattern matching inside a macro?Because when I am trying to do so call is terminating even for a very simple dummy dialplan.[demo3]exten=>98,1,NoOp()exten=>98,2,Macro(testme)exten=>h,1,NoOp(terminating call);[macro-testme]exten=>s,1,Playback(Digits/2)exten=>s,2,WaitExten(15)exten=>s,3,NoOp()exten=>_X,1,NoOp(${EXTEN})exten=>_X,2,Goto(s,3)E..
I created a dummy dialplanwhere I ask the user to enter the age.[macro-age]exten => s,1,Background(my/age);;Play recorded message to enter age exten => s,n,WaitExten(10)exten => _XX,1,Set(AGE=${EXTEN});; this line is not executing, instead dialplan..