Re: [asterisk-users] change dialing process on live call

2018-08-19 Thread Eric Wieling
Another way, using Local/ [do_dial] exten => s,1,Noop exten => s,n,Dial(SIP/1000&Local/1001@do_dial,20) exten => s,n,Hangup() exten => 1001,1,Noop exten => 1001,n,Wait(20) exten => 1001,n,Dial(SIP/1001) exten => 1001,n,Hangup More detailed: https://wiki.asterisk.org/wiki/display/AST/Delay+Dia

Re: [asterisk-users] change dialing process on live call

2018-08-19 Thread Antony Stone
On Sunday 19 August 2018 at 14:20:35, Khalil Khamlichi wrote: > Thanks for your response, this works but we cannot hardcode this in the > dialplan, we need this to be done from an external application connected > either via manager or stasis. Have you considered using Asterisk Realtime to store (

Re: [asterisk-users] change dialing process on live call

2018-08-19 Thread Khalil Khamlichi
Thanks for your response, this works but we cannot hardcode this in the dialplan, we need this to be done from an external application connected either via manager or stasis. On Sun, Aug 19, 2018, 11:14 AM Doug Lytle wrote: > On 08/19/2018 05:57 AM, Khalil Khamlichi wrote: > > Is there a way to

Re: [asterisk-users] change dialing process on live call

2018-08-19 Thread Doug Lytle
On 08/19/2018 05:57 AM, Khalil Khamlichi wrote: Is there a way to add another extension to a live dial, for example Dial(PJSIP/1000,,) and after 20 secondes change it to Dial(PJSIP/1000&PJSIP/1001,,) This is a simple one.     exten => s,1,Dial(SIP/1000,20)     exten => s,n,Dial(SIP/1000&SIP

[asterisk-users] change dialing process on live call

2018-08-19 Thread Khalil Khamlichi
Hi, Is there a way to add another extension to a live dial, for example Dial(PJSIP/1000,,) and after 20 secondes change it to Dial(PJSIP/1000&PJSIP/1001,,) I am open to suggestions such as using manager or stasis. Thanks in advance. Best regards, Kkh --