Hello,
I am using Macro after Dialing. Here is my dialplan where I am using Macro.
exten => _X.,1,DIAL(SIP/${account}/${EXTEN},30,M(bypassext,${uniqueId}))
exten => h,1,Hangup()
Here is my macro:
[macro-bypassext]
exten => s,1,NoOp(Starting bypass...!!!!!!)
exten => s,n, MacroExit()
I want to exit from Macro forcefully after a particular time. I don’t want to wait for someone to disconnect call.
What to write in the Macro when it get executed call get disconnected automatically. I am writing MacroExit but it’s not working.