Re: [Asterisk-Users] Group dial CDR

2005-10-21 Thread Matt Gibson
Asterisk Sales wrote: hello list, i have a dial plan exten =12345,1,Dial(sip/100sip/101sip/102,30,rt) we have the same setup on our system, and what I did (albeit a tad ghetto) was just to mimick round robin and include a few lines of the dial statement. This way the last person it rang,

Re: [Asterisk-Users] Group dial, first phone cannot pickup call if included in subsequent steps.

2005-05-11 Thread bam
I've tried it on another system and can reproduce the fault at will. It would seem that the first Dial command is not terminated when the second Dial includes the first extension. e.g. exten = 100,1,Dial(SIP/1001,10,tr) exten = 100,2,Dial(SIP/1002,10,tr) exten = 100,3,Dial(SIP/1003,10,tr) Will

RE: [Asterisk-Users] Group Dial

2004-09-03 Thread Tomica Crnek
PROTECTED] On Behalf Of Robinson Tim-W10277Sent: Wednesday, September 01, 2004 6:01 PMTo: Asterisk Users Mailing List - Non-Commercial DiscussionSubject: RE: [Asterisk-Users] Group Dial What is your definition of TRUNKBP ? It is probably because that channel is being answered

RE: [Asterisk-Users] Group Dial

2004-09-03 Thread Tomica Crnek
: RE: [Asterisk-Users] Group Dial Tomica Crnek [EMAIL PROTECTED] wrote: (Article auto-converted from unnecessary HTML to nice plain text.) I want to have a group and dial multiple phones/lines simultaneously. If I use this Dial command: exten = 222,2,Dial(${TRUNKBP}/246SIP/258

RE: [Asterisk-Users] Group Dial

2004-09-01 Thread Kevin Walsh
Tomica Crnek [EMAIL PROTECTED] wrote: (Article auto-converted from unnecessary HTML to nice plain text.) I want to have a group and dial multiple phones/lines simultaneously. If I use this Dial command: exten = 222,2,Dial(${TRUNKBP}/246SIP/258${TRUNKBP}/243,20,tTr) ... all phones ring

RE: [Asterisk-Users] Group Dial

2004-09-01 Thread Robinson Tim-W10277
Title: Message What is your definition of TRUNKBP ? It is probably because that channel is being answered first Rgds Tim -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tomica CrnekSent: 01 September 2004 15:19To: [EMAIL

RE: [Asterisk-Users] Group dial codes ?(Newbie question)

2003-11-12 Thread David Carr
Sure. Make two contexts like these: [peons] exten = 1,1,TakeOutTheTrash() exten = 2,1,WashTheDishes() exten = 3,1,CleanTheToilet() [rulers] include = peons exten = 800,1,FeedMeGrapes() This way the rulers have everything the peons have and then a little more. Then use your sip.conf or your

RE: [Asterisk-Users] Group dial codes ?(Newbie question)

2003-11-12 Thread Philipp von Klitzing
Thanks David, I had a an excellent laugh at this (actually my first of the day, which makes it worth twice as much) ;- Philipp [peons] exten = 1,1,TakeOutTheTrash() exten = 2,1,WashTheDishes() exten = 3,1,CleanTheToilet() [rulers] include = peons exten = 800,1,FeedMeGrapes()