Displaying 1 result from an estimated 1 matches for "domessag".
Did you mean:
domessage
2007 Apr 02
1
understanding what h extension does
...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 seems to work fine until one of the callees hangs up before the
messag...