Displaying 2 results from an estimated 2 matches for "wait5".
Did you mean:
wait
2015 Jul 15
2
How to dial extensions asynchronous-sequentially ?
Heya Rodrigo
Not sure, but this expansion on Sammy's concept may help you achieve the delayed ring on the secondary extensions you were looking for.
exten => _600.,1,Dial(PJSIP/${EXTEN})
exten => _600.,n,Hangup
exten => _600.wait5,1,Wait(5)
exten => _600.wait5,n,Dial(PJSIP/${EXTEN:0:4})
exten => _600.wait5,n,Hangup
exten => 555,1,Dial(LOCAL/6001&LOCAL/6002.wait5)
exten => 555,n,Hangup
So you dial '555' and it rings 6001, then 5 second later (assuming 6001 isn't answered yet) 6002 starts ringing...
2015 Jul 13
3
How to dial extensions asynchronous-sequentially ?
Hi.
I my dialplan I have :
same = n,Dial(PJSIP/6001,10)
same = n,Dial(PJSIP/6002,30)
same = n,Hangup()
The extension 6002 will not be invited until the called party 6001 hangs up or until 10 seconds if nobody answers the call in 6001.
How to call 6001 and immediately call 6002, having 2 phones ringing at same time, but without doing something like this : same =