Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Adam Goryachev
On Wed, 2005-01-26 at 17:58 -0500, Sean A. Newton wrote: On Wed, 26 Jan 2005, Kevin P. Fleming wrote: But you _can_ use SetGroup/CheckGroup/GetGroupCount if you don't put the SIP peer directly into the queue, but instead add a Local/.. channel that makes the Queue call out to the agent

[Asterisk-Users] Re: Polycom and call waiting again...

2005-01-27 Thread David Gomillion
Message: 10 Date: Wed, 26 Jan 2005 17:53:39 -0500 (EST) From: Sean A. Newton [EMAIL PROTECTED] Subject: Re: [Asterisk-Users] Re: Polycom and call waiting again.. To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Message-ID: [EMAIL PROTECTED

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Kevin P. Fleming
Adam Goryachev wrote: [local-stuff] ; This is where we pretend a channel is an extension exten = 1234,1,SetGroup(SIP1234) exten = 1234,2,CheckGroup(1) exten = 1234,3,Dial(SIP/1234,15) exten = 1234,104,Busy [queue-stuff] exten = 6939,1,AddQueueMember(Local/${CALLERIDNUM}) You are close... that

RE: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Eric Rees
[mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 9:28 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: Polycom and call waiting again.. Adam Goryachev wrote: [local-stuff] ; This is where we pretend a channel is an extension exten

RE: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread B. J. Bomar
Subject: RE: [Asterisk-Users] Re: Polycom and call waiting again.. Here is what I have done to get around the call waiting problem. This is for a Polycom 500. This is kind of a pain, but it works. Exten.conf exten = 1051,1,Dial(SIP/1051,20,tTr) exten = 1051,2,Voicemail(u${EXTEN}) exten = 1051,102

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Sean A. Newton
On Thu, 27 Jan 2005, Kevin P. Fleming wrote: Adam Goryachev wrote: [local-stuff] ; This is where we pretend a channel is an extension exten = 1234,1,SetGroup(SIP1234) exten = 1234,2,CheckGroup(1) exten = 1234,3,Dial(SIP/1234,15) exten = 1234,104,Busy [queue-stuff] exten =

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Jon Radon
9:28 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: Polycom and call waiting again.. Adam Goryachev wrote: [local-stuff] ; This is where we pretend a channel is an extension exten = 1234,1,SetGroup(SIP1234) exten = 1234,2,CheckGroup

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Eric Wieling
B. J. Bomar wrote: While your solution may work now, it might not work on the next release as both incominglimit and outgoinglimit are deprecated. Here is an idea on how to use SetGroup and CheckGroup using your template as an example. exten = 1051,1,SetGroup(${EXTEN}) exten =

RE: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread Eric Rees
] Sent: Thursday, January 27, 2005 9:28 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: Polycom and call waiting again.. Adam Goryachev wrote: [local-stuff] ; This is where we pretend a channel is an extension exten = 1234,1,SetGroup

RE: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-27 Thread B. J. Bomar
) Then just repoint the context for each line to the in-from-sip context. B. J. -Original Message- From: Eric Wieling [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 12:13 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: Polycom and call

[Asterisk-Users] Re: Polycom and call waiting again..

2005-01-26 Thread Noah Miller
Have you tried adding SetGroup(), and CheckGroup() functions to the dialplan that rings the phone? It maybe something to try. I think the problem is that these functions only work from the dialplan. In this case, Sean is trying to get calls from a Queue (and not the dialplan) to the correct

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-26 Thread Kevin P. Fleming
Noah Miller wrote: I think the problem is that these functions only work from the dialplan. In this case, Sean is trying to get calls from a Queue (and not the dialplan) to the correct line on the phone. I was thinking about implementing a queue for our receptionists, but this problem

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-26 Thread Sean A. Newton
On Wed, 26 Jan 2005, Noah Miller wrote: Have you tried adding SetGroup(), and CheckGroup() functions to the dialplan that rings the phone? It maybe something to try. I think the problem is that these functions only work from the dialplan. In this case, Sean is trying to get calls

Re: [Asterisk-Users] Re: Polycom and call waiting again..

2005-01-26 Thread Sean A. Newton
On Wed, 26 Jan 2005, Kevin P. Fleming wrote: But you _can_ use SetGroup/CheckGroup/GetGroupCount if you don't put the SIP peer directly into the queue, but instead add a Local/.. channel that makes the Queue call out to the agent via a special context in your dialplan. This special context