search for: calcnextchan

Displaying 1 result from an estimated 1 matches for "calcnextchan".

2007 Apr 02
1
understanding what h extension does
I am trying to make a dialplan that when I dial 90 I can go round a whole set of extensions and leave them a short message, hangup and go on the next one. I use the M facility of dial, with something like this [messages] exten => 90,n(calcnextchan),Set(DIALCHAN=...) exten => 90,n,Dial(${DIALCHAN},30,M(domessage)) exten => 90,n,Goto(calcnextchan) [macro-domessage] exten => s,1,Playback(message) exten => s,n,Set(MACRO_RESULT=CONTINUE) [There is actually more logic to check for busy dial channels and retry them later] This seem...