Displaying 2 results from an estimated 2 matches for "garden_house".
2009 Jul 17
2
How do I create an IVR/Dial Group that works properly?
...,n,Hangup()
exten => _s-.,1,Goto(s-NOANSWER,1)
Here is the call-extension Macro:
[macro-call_extension]
exten => s,1,Dial(${ARG1},20,t) ; Ring channel for up to 20s
exten => s,n,Goto(s-${DIALSTATUS},1) ; Go to either no answer or busy.
exten => s-NOANSWER,1,Voicemail(${MACRO_EXTEN}@garden_house,u)
exten => s-BUSY,1,Voicemail(${MACRO_EXTEN}@garden_house,b)
exten => _s-.,1,Goto(s-NOANSWER,1)
2009 Jul 16
0
Struggling with Macros and "s" Extension
...ays *both* numbers of
the connection.
For that scenario we use macro-call_extention:
[macro-call_extension]
exten => s,1,Dial(${ARG1},20,t) ; Ring channel for up to 20s
exten => s,n,Goto(s-${DIALSTATUS},1) ; Go to either no answer or busy.
exten => s-NOANSWER,1,Voicemail(${MACRO_EXTEN}@garden_house,u)
exten => s-BUSY,1,Voicemail(${MACRO_EXTEN}@garden_house,b)
exten => _s-.,1,Goto(s-NOANSWER,1)
If however I wait and let macro-belllord do it's stuff. I only ever see
"s" as the called party's number.
I really need to know what that extension number is.
Could someon...