Displaying 1 result from an estimated 1 matches for "callforwardhunt".
2006 Nov 01
0
AEL2 - CUT function usage
Hi,
In Asterisk 1.2.7, my AEL code looks like this:
macro callForwardHunt(numargs,numlist,typelist,ttr)
{
for(x=1;${x}<${numargs}+1;x=${x}+1)
{
CUT(number=numlist,-,${x});
CUT(type=typelist,-,${x});
NoOp(${number});
NoOp(${type});
Dial(${type}${number},${ttr});...