[asterisk-users] Dial()-Function

2016-03-20 Thread Dominique Haeber
Hi all! :) I search a function or option for application Dail(). My situations: I have two or more Dial()s with multiple devices (Handgroups). Level1: Dial(SIP/device1,20) Level2: Dial(SIP/device1/device2,20) Level3: Dial(SIP/device1/device2/device3,20) When in level one, no one accept the

Re: [asterisk-users] Dial()-Function

2016-03-19 Thread jg
Hi all! :) I search a function or option for application Dail(). My situations: I have two or more Dial()s with multiple devices (Handgroups). Level1: Dial(SIP/device1,20) Level2: Dial(SIP/device1/device2,20) Level3: Dial(SIP/device1/device2/device3,20) When in level one, no one accept

Re: [asterisk-users] Dial()-Function

2016-03-18 Thread jg
No, i think unfortunately it is not easier. :/ I have a string from database (Macro/appdata) in the format: function|timeout|function|timeout|function|timeout| Up to seven value pairs. "function" can be "Queue" (Identified by: "qu"-string), "Voicemail" (Identified by: "vm"-string),

Re: [asterisk-users] Dial()-Function

2016-03-18 Thread Dominique Haeber
hi jg, jg schrieb am Don, 17. Mär 14:05: > Wouldn't it be easier to use a local channel and do something like > is done in the "Delay Dialing Devices Example"? > > https://wiki.asterisk.org/wiki/display/AST/Delay+Dialing+Devices+Example No, i think unfortunately

[asterisk-users] Dial() function

2011-02-17 Thread Albert
Hello everybody, Can someone explain [gGrR] in Dial() function? To dial external extension 18005551212 over channel 2 we will use: Dial(DAHDI/2/18005551212) To dial external extension 18005551212 over one of channel from group of channels (nr 2) we will use: Dial(DAHDI/g2/18005551212) So lets

Re: [asterisk-users] Dial() function

2011-02-17 Thread Paul Belanger
On 11-02-17 07:31 PM, Albert wrote: Hello everybody, Can someone explain [gGrR] in Dial() function? *CLI core show application Dial To dial external extension 18005551212 over channel 2 we will use: Dial(DAHDI/2/18005551212) To dial external extension 18005551212 over one of channel

[asterisk-users] Dial function, and no telephone line fixed in the fxo port

2008-09-12 Thread bilal ghayyad
Hi List; First of all, how can I know that the telephone line is not fixed in the fxo port? Then, if the Dial function used to place a call via the zaptel (via the fxo port), and no telephone line was fixed in the fxo, can I have any returned error to know that the telephone line is not fixed

Re: [asterisk-users] Dial function exit, go to line n+1

2008-07-09 Thread Jerome Poggi
On Mon, 07 Jul 2008, Matt Riddell wrote: Example : exten = s,5,ChanIsAvail(SIP/604,s) exten = s,6,Dial(SIP/604,15,wotr) exten = s,106,NoOp(Matthieu) exten = s,n,ChanIsAvail(SIP/605,s) Won't work because Dial exit to 7, and line 7 don't exist but exten =

Re: [asterisk-users] Dial function exit, go to line n+1

2008-07-09 Thread Jared Smith
On Wed, 2008-07-09 at 13:42 +0200, Jerome Poggi wrote: I use them before some patch. But this example work : exten = s,5,ChanIsAvail(SIP/604,s) exten = s,6,Dial(SIP/604,15,wotr) exten = s,7,NoOp(Nopnopnopnopnop) exten = s,10,NoOp(Matthieu) and this not : exten =

Re: [asterisk-users] Dial function exit, go to line n+1

2008-07-09 Thread Tilghman Lesher
On Wednesday 09 July 2008 09:03:07 Jared Smith wrote: On Wed, 2008-07-09 at 13:42 +0200, Jerome Poggi wrote: I use them before some patch. But this example work : exten = s,5,ChanIsAvail(SIP/604,s) exten = s,6,Dial(SIP/604,15,wotr) exten = s,7,NoOp(Nopnopnopnopnop) exten =

Re: [asterisk-users] Dial function exit, go to line n+1

2008-07-09 Thread Rob Hillis
Jared Smith wrote: On Wed, 2008-07-09 at 13:42 +0200, Jerome Poggi wrote: I use them before some patch. But this example work : exten = s,5,ChanIsAvail(SIP/604,s) exten = s,6,Dial(SIP/604,15,wotr) exten = s,7,NoOp(Nopnopnopnopnop) exten = s,10,NoOp(Matthieu) and this not : exten =

Re: [asterisk-users] Dial function exit, go to line n+1

2008-07-07 Thread Matt Riddell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jerome Poggi wrote: Yesturday I found a bug in Asterisk, in particular in Dial application. When the Dial function exit it want to branch to n+1, but if n+1 do not exist, it exit from the context. Example : exten = s,5,ChanIsAvail(SIP/604,s)

[asterisk-users] Dial function exit, go to line n+1

2008-07-03 Thread Jerome Poggi
Yesturday I found a bug in Asterisk, in particular in Dial application. When the Dial function exit it want to branch to n+1, but if n+1 do not exist, it exit from the context. Example : exten = s,5,ChanIsAvail(SIP/604,s) exten = s,6,Dial(SIP/604,15,wotr) exten = s,106,NoOp(Matthieu) exten =