Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-31 Thread Larry Alkoff


William, thanks for the info on macros.  I'll try to implement some 
macros using several different callgroups.  I have in mind:  ALL, all 
upstairs, all downstairs, her normal domain and my normal domain. 
Normal domain for me is my upstairs office, ham radio 'shack' and lab 
and for her is her downstairs office, kitchen and family room.  If wife 
and I are both on the same floor (rare), we can just shout g


I looked up call queues at
http://www.voip-info.org/wiki-Asterisk+call+queues
and it seems pretty complex for the simple job I want to do.

What I want to do is have all the phones ring some callgroup.
Intercom and paging in selected callgroups and incoming calls probably 
in ALL.

Normally, the only people who would answer would be either wife or me.

In the case of intercom calls, it's me calling her or vice versa.
In case of incoming calls, again either me or her would pick up.

Does that sound like a situation that would be helped by call queues?

Larry



William Piper wrote:

Sure, do something like this:

[telasip-in]
exten = _512879677[67],1,macro(callgroup,s,1)
exten = _879677[67],1,macro(callgroup,s,1)

[macro-callgroup]
exten = s,1,Dial(SIP/120SIP/121SIP/122SIP/124SIP/125SIP/126SIP/127)
exten = s,2,hangup


From the sounds of it, this would probably work better if you setup call

queues, but the above will do what you are asking.

bp


On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:


William I found and fixed the problem.  Your comment gave me the kick to
persevere.  Thank you very much.

My exten line had a comment at the end that contained a close paren.
That apparently screwed up the context line - although it shouldn't
have.  Now all three extensions ring.

Note my mail program wrapped the line but it's not wrapped in the file:

[telasip-in]
;===
exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)  ; to be all
extensions)
exten =_512879677[67],1,Dial(SIP/120SIP/122SIP/124)


This leads to another problem.  I have 13 sip phones for [telasip-in]
and other contexts to call ring groups for extension intercomming.

Is there some kind of macro I could have to replace the instances of:
(SIP/120SIP/122SIP/124)

I have not yet written or read up on macros.

Larry

William Piper wrote:
 I don't know then, I do the same exact thing:
 exten = _352688,3,Dial,SIP/202SIP/214|20

 Perhaps try sending everything in that context exactly as it is typed 
let
 us look at it.
 I'm pretty sure you have something configured incorrectly.

 Thanks,

 bp


 On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:

 Sorry I was not clear Rushowr.

 In the actual extensions.conf as used, the 'old' line is commented out
 so only 'new' is active.  Then I reload.  However, only the single 120
 line rings instead of all.

 Larry

 Rushowr wrote:
  Then entire OLD extension must be removed so the new one will match
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of
  Larry Alkoff
  Sent: Tuesday, August 29, 2006 6:49 PM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 
  Color me puzzled.  What part of: exten =
  _879677[67],1,Dial(SIP/120) should be deleted?
 
  Larry
 
  William Piper wrote:
  Sounds like you still have the old exten still there.
  Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)
 
  bp




--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-31 Thread William Piper
Na, this will be fine for that... when you said 15 phones, I thought of a call center. Having queues gives you reporting tools. For what you are talking about though... the macro will be fine.

bp
On 8/31/06, Larry Alkoff [EMAIL PROTECTED] wrote:
William, thanks for the info on macros.I'll try to implement somemacros using several different callgroups.I have in mind:ALL, all
upstairs, all downstairs, her normal domain and my normal domain.Normal domain for me is my upstairs office, ham radio 'shack' and laband for her is her downstairs office, kitchen and family room.If wife
and I are both on the same floor (rare), we can just shout gI looked up call queues athttp://www.voip-info.org/wiki-Asterisk+call+queues
and it seems pretty complex for the simple job I want to do.What I want to do is have all the phones ring some callgroup.Intercom and paging in selected callgroups and incoming calls probablyin ALL.
Normally, the only people who would answer would be either wife or me.In the case of intercom calls, it's me calling her or vice versa.In case of incoming calls, again either me or her would pick up.Does that sound like a situation that would be helped by call queues?
LarryWilliam Piper wrote: Sure, do something like this: [telasip-in] exten = _512879677[67],1,macro(callgroup,s,1) exten = _879677[67],1,macro(callgroup,s,1)
 [macro-callgroup] exten = s,1,Dial(SIP/120SIP/121SIP/122SIP/124SIP/125SIP/126SIP/127) exten = s,2,hangup From the sounds of it, this would probably work better if you setup call
 queues, but the above will do what you are asking. bp On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:
 William I found and fixed the problem.Your comment gave me the kick to persevere.Thank you very much. My exten line had a comment at the end that contained a close paren.
 That apparently screwed up the context line - although it shouldn't have.Now all three extensions ring. Note my mail program wrapped the line but it's not wrapped in the file:
 [telasip-in] ;=== exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124); to be all extensions) exten =_512879677[67],1,Dial(SIP/120SIP/122SIP/124)
 This leads to another problem.I have 13 sip phones for [telasip-in] and other contexts to call ring groups for extension intercomming. Is there some kind of macro I could have to replace the instances of:
 (SIP/120SIP/122SIP/124) I have not yet written or read up on macros. Larry William Piper wrote:  I don't know then, I do the same exact thing:
  exten = _352688,3,Dial,SIP/202SIP/214|20   Perhaps try sending everything in that context exactly as it is typed  let  us look at it.
  I'm pretty sure you have something configured incorrectly.   Thanks,   bpOn 8/30/06, Larry Alkoff 
[EMAIL PROTECTED] wrote:   Sorry I was not clear Rushowr.   In the actual extensions.conf
 as used, the 'old' line is commented out  so only 'new' is active.Then I reload.However, only the single 120  line rings instead of all.   Larry
   Rushowr wrote:   Then entire OLD extension must be removed so the new one will match -Original Message-
   From: [EMAIL PROTECTED]   [mailto:
[EMAIL PROTECTED]] On Behalf Of   Larry Alkoff   Sent: Tuesday, August 29, 2006 6:49 PM   To: Asterisk Users Mailing List - Non-Commercial Discussion
   Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones Color me puzzled.What part of: exten =   _879677[67],1,Dial(SIP/120) should be deleted?
 Larry William Piper wrote:   Sounds like you still have the old exten still there.
   Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120) bp --Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux___--Bandwidth and Colocation provided by Easynews.com --asterisk-users mailing listTo UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread Larry Alkoff

Sorry I was not clear William.
In the actual code, the exten marked 'old' is commented out and only 
'new' is active.  Then I reload.  But only the single 120 instrument rings.


Larry

William Piper wrote:

The whole thing.
Both (old and new) have the same exten and the same priority, you can't do
that and expect it to work properly.
The new exten will call all 3 phones at the same time, whoever answers 
first

gets the call.

If you want it to call SIP/120 first and if they don't answer then ring to
all 3, you'd want to do this:
exten =_879677[67],1,Dial(SIP/120|20) ;this will ring for 20 seconds
then go to priority 2.
exten =_879677[67],2,Dial(SIP/120SIP/122SIP/124)

bp

On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:


Color me puzzled.  What part of: exten = _879677[67],1,Dial(SIP/120)
should be deleted?

Larry

William Piper wrote:
 Sounds like you still have the old exten still there.
 Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)

 bp

 On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:

 This is a reply to a fairly old thread.

 My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
 old: exten =_879677[67],1,Dial(SIP/120); works fine
 new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)

 I edit extensions.conf to the new line above, type 'reload' into the
 CLI, see the new line with 'show dialplan' and actually see the new
line
 above, but when I dial the DID 879-6777 it rings on extension 120 
only.


 Have I missed a step?

 Larry

 Jonathan k. Creasy wrote:
  EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)
 
 
 
  
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Dave
  Morrow
  Sent: Tuesday, November 08, 2005 1:51 PM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: [Asterisk-Users] Extension Ring on Multiple Phones
 
 
 
  Hi all.  I wonder if anyone out there has a dial-plan which will
 ring an
  extension on multiple phones.
 
  David A. Morrow




--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread Larry Alkoff

Sorry I was not clear Rushowr.

In the actual extensions.conf as used, the 'old' line is commented out
so only 'new' is active.  Then I reload.  However, only the single 120 
line rings instead of all.


Larry

Rushowr wrote:
Then entire OLD extension must be removed so the new one will match 


-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of 
Larry Alkoff

Sent: Tuesday, August 29, 2006 6:49 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones

Color me puzzled.  What part of: exten = 
_879677[67],1,Dial(SIP/120) should be deleted?


Larry

William Piper wrote:

Sounds like you still have the old exten still there.
Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)

bp

On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:

This is a reply to a fairly old thread.

My EXTEN string is meant to ring 3 phones (will increase 

to 12) thus:

old: exten =_879677[67],1,Dial(SIP/120); works fine
new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)

I edit extensions.conf to the new line above, type 
'reload' into the 
CLI, see the new line with 'show dialplan' and actually 
see the new 
line above, but when I dial the DID 879-6777 it rings on 

extension 120 only.

Have I missed a step?

Larry

Jonathan k. Creasy wrote:

EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)





From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On 
Behalf Of Dave 

Morrow
Sent: Tuesday, November 08, 2005 1:51 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] Extension Ring on Multiple Phones



Hi all.  I wonder if anyone out there has a dial-plan which will

ring an

extension on multiple phones.

David A. Morrow



--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread William Piper
I don't know then, I do the same exact thing:
exten = _352688,3,Dial,SIP/202SIP/214|20

Perhaps try sending everything in that context exactly as it is typed  let us look at it.
I'mpretty sure you have something configured incorrectly.

Thanks,

bp
On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:
Sorry I was not clear Rushowr.In the actual extensions.conf as used, the 'old' line is commented out
so only 'new' is active.Then I reload.However, only the single 120line rings instead of all.LarryRushowr wrote: Then entire OLD extension must be removed so the new one will match
 -Original Message- From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED]] On Behalf Of Larry Alkoff Sent: Tuesday, August 29, 2006 6:49 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 Color me puzzled.What part of: exten = _879677[67],1,Dial(SIP/120) should be deleted? Larry William Piper wrote: Sounds like you still have the old exten still there.
 Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120) bp
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread J. Oquendo
Make sure all of the lines you are ringing are registered up and 
running. I noticed this when I did a paging extension. I rang about 40 
phones and the second it saw one offline it failed only ringing one phone.


William Piper wrote:

I don't know then, I do the same exact thing:
exten = _352688,3,Dial,SIP/202SIP/214|20
 
Perhaps try sending everything in that context exactly as it is typed 
 let us look at it.

I'm pretty sure you have something configured incorrectly.
 
Thanks,
 
bp


 
On 8/30/06, *Larry Alkoff* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Sorry I was not clear Rushowr.

In the actual extensions.conf as used, the 'old' line is commented
out
so only 'new' is active.  Then I reload.  However, only the single 120
line rings instead of all.

Larry

Rushowr wrote:
 Then entire OLD extension must be removed so the new one will match

 -Original Message-
 From: [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
 [mailto: [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]] On Behalf Of
 Larry Alkoff
 Sent: Tuesday, August 29, 2006 6:49 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones

 Color me puzzled.  What part of: exten =
 _879677[67],1,Dial(SIP/120) should be deleted?

 Larry

 William Piper wrote:
 Sounds like you still have the old exten still there.
 Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)

 bp




___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
  



--

J. Oquendo
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x1383A743
sil . infiltrated @ net http://www.infiltrated.net 


The happiness of society is the end of government.
John Adams

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread Larry Alkoff
William I found and fixed the problem.  Your comment gave me the kick to 
persevere.  Thank you very much.


My exten line had a comment at the end that contained a close paren.
That apparently screwed up the context line - although it shouldn't 
have.  Now all three extensions ring.


Note my mail program wrapped the line but it's not wrapped in the file:

[telasip-in]
;===
exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)  ; to be all 
extensions)

exten =_512879677[67],1,Dial(SIP/120SIP/122SIP/124)


This leads to another problem.  I have 13 sip phones for [telasip-in] 
and other contexts to call ring groups for extension intercomming.


Is there some kind of macro I could have to replace the instances of:
(SIP/120SIP/122SIP/124)

I have not yet written or read up on macros.

Larry

William Piper wrote:

I don't know then, I do the same exact thing:
exten = _352688,3,Dial,SIP/202SIP/214|20

Perhaps try sending everything in that context exactly as it is typed  let
us look at it.
I'm pretty sure you have something configured incorrectly.

Thanks,

bp


On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:


Sorry I was not clear Rushowr.

In the actual extensions.conf as used, the 'old' line is commented out
so only 'new' is active.  Then I reload.  However, only the single 120
line rings instead of all.

Larry

Rushowr wrote:
 Then entire OLD extension must be removed so the new one will match

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Larry Alkoff
 Sent: Tuesday, August 29, 2006 6:49 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones

 Color me puzzled.  What part of: exten =
 _879677[67],1,Dial(SIP/120) should be deleted?

 Larry

 William Piper wrote:
 Sounds like you still have the old exten still there.
 Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)

 bp





___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users



--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-30 Thread William Piper
Sure, do something like this:

[telasip-in]
exten = _512879677[67],1,macro(callgroup,s,1)
exten =_879677[67],1,macro(callgroup,s,1)

[macro-callgroup]
exten = s,1,Dial(SIP/120SIP/121SIP/122SIP/124SIP/125SIP/126SIP/127)exten = s,2,hangup

From the sounds of it, this would probably work better if you setup call queues, but the above will do what you are asking.

bp
On 8/30/06, Larry Alkoff [EMAIL PROTECTED] wrote:
William I found and fixed the problem.Your comment gave me the kick topersevere.Thank you very much.
My exten line had a comment at the end that contained a close paren.That apparently screwed up the context line - although it shouldn'thave.Now all three extensions ring.Note my mail program wrapped the line but it's not wrapped in the file:
[telasip-in];===exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124); to be allextensions)exten =_512879677[67],1,Dial(SIP/120SIP/122SIP/124)This leads to another problem.I have 13 sip phones for [telasip-in]
and other contexts to call ring groups for extension intercomming.Is there some kind of macro I could have to replace the instances of:(SIP/120SIP/122SIP/124)I have not yet written or read up on macros.
LarryWilliam Piper wrote: I don't know then, I do the same exact thing: exten = _352688,3,Dial,SIP/202SIP/214|20 Perhaps try sending everything in that context exactly as it is typed  let
 us look at it. I'm pretty sure you have something configured incorrectly. Thanks, bp On 8/30/06, Larry Alkoff 
[EMAIL PROTECTED] wrote: Sorry I was not clear Rushowr. In the actual extensions.conf as used, the 'old' line is commented out so only 'new' is active.Then I reload.However, only the single 120
 line rings instead of all. Larry Rushowr wrote:  Then entire OLD extension must be removed so the new one will match   -Original Message-
  From: [EMAIL PROTECTED]  [mailto:[EMAIL PROTECTED]
] On Behalf Of  Larry Alkoff  Sent: Tuesday, August 29, 2006 6:49 PM  To: Asterisk Users Mailing List - Non-Commercial Discussion  Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
   Color me puzzled.What part of: exten =  _879677[67],1,Dial(SIP/120) should be deleted?   Larry 
  William Piper wrote:  Sounds like you still have the old exten still there.  Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120) 
  bp  ___ --Bandwidth and Colocation provided by 
Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit:http://lists.digium.com/mailman/listinfo/asterisk-users
--Larry Alkoff N2LA - Austin TXUsing Thunderbird on Linux___--Bandwidth and Colocation provided by Easynews.com
 --asterisk-users mailing listTo UNSUBSCRIBE or update options visit:http://lists.digium.com/mailman/listinfo/asterisk-users

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread Larry Alkoff

This is a reply to a fairly old thread.

My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
old: exten =_879677[67],1,Dial(SIP/120) ; works fine
new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)

I edit extensions.conf to the new line above, type 'reload' into the 
CLI, see the new line with 'show dialplan' and actually see the new line 
above, but when I dial the DID 879-6777 it rings on extension 120 only.


Have I missed a step?

Larry

Jonathan k. Creasy wrote:

EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)

 




From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave
Morrow
Sent: Tuesday, November 08, 2005 1:51 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] Extension Ring on Multiple Phones

 


Hi all.  I wonder if anyone out there has a dial-plan which will ring an
extension on multiple phones. 

David A. Morrow 


___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread William Piper
Sounds like you still have the old exten still there. 
Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)
bp
On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:
This is a reply to a fairly old thread.My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
old: exten =_879677[67],1,Dial(SIP/120); works finenew: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)I edit extensions.conf to the new line above, type 'reload' into the
CLI, see the new line with 'show dialplan' and actually see the new lineabove, but when I dial the DID 879-6777 it rings on extension 120 only.Have I missed a step?LarryJonathan k. Creasy wrote:
 EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)  From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]] On Behalf Of Dave Morrow Sent: Tuesday, November 08, 2005 1:51 PM To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: [Asterisk-Users] Extension Ring on Multiple Phones Hi all.I wonder if anyone out there has a dial-plan which will ring an extension on multiple phones.
 David A. Morrow___--Bandwidth and Colocation provided by Easynews.com --asterisk-users mailing listTo UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread Rushowr
That's very very odd...that should work fine :( 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Larry Alkoff
 Sent: Tuesday, August 29, 2006 11:30 AM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 
 This is a reply to a fairly old thread.
 
 My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
 old: exten =_879677[67],1,Dial(SIP/120)  ; works fine
 new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)
 
 I edit extensions.conf to the new line above, type 'reload' 
 into the CLI, see the new line with 'show dialplan' and 
 actually see the new line above, but when I dial the DID 
 879-6777 it rings on extension 120 only.
 
 Have I missed a step?
 
 Larry
 
 Jonathan k. Creasy wrote:
  EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)
  
   
  
  
  
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Dave 
  Morrow
  Sent: Tuesday, November 08, 2005 1:51 PM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: [Asterisk-Users] Extension Ring on Multiple Phones
  
   
  
  Hi all.  I wonder if anyone out there has a dial-plan which 
 will ring 
  an extension on multiple phones.
  
  David A. Morrow
 
 ___
 --Bandwidth and Colocation provided by Easynews.com --
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 



___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread Larry Alkoff

Color me puzzled.  What part of: exten = _879677[67],1,Dial(SIP/120)
should be deleted?

Larry

William Piper wrote:

Sounds like you still have the old exten still there.
Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)

bp

On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:


This is a reply to a fairly old thread.

My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
old: exten =_879677[67],1,Dial(SIP/120); works fine
new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)

I edit extensions.conf to the new line above, type 'reload' into the
CLI, see the new line with 'show dialplan' and actually see the new line
above, but when I dial the DID 879-6777 it rings on extension 120 only.

Have I missed a step?

Larry

Jonathan k. Creasy wrote:
 EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)



 

 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Dave
 Morrow
 Sent: Tuesday, November 08, 2005 1:51 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: [Asterisk-Users] Extension Ring on Multiple Phones



 Hi all.  I wonder if anyone out there has a dial-plan which will 
ring an

 extension on multiple phones.

 David A. Morrow

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users






___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users



--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread Rushowr
Then entire OLD extension must be removed so the new one will match 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Larry Alkoff
 Sent: Tuesday, August 29, 2006 6:49 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 
 Color me puzzled.  What part of: exten = 
 _879677[67],1,Dial(SIP/120) should be deleted?
 
 Larry
 
 William Piper wrote:
  Sounds like you still have the old exten still there.
  Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120)
  
  bp
  
  On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:
 
  This is a reply to a fairly old thread.
 
  My EXTEN string is meant to ring 3 phones (will increase 
 to 12) thus:
  old: exten =_879677[67],1,Dial(SIP/120); works fine
  new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124)
 
  I edit extensions.conf to the new line above, type 
 'reload' into the 
  CLI, see the new line with 'show dialplan' and actually 
 see the new 
  line above, but when I dial the DID 879-6777 it rings on 
 extension 120 only.
 
  Have I missed a step?
 
  Larry
 
  Jonathan k. Creasy wrote:
   EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)
  
  
  
   
  
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On 
 Behalf Of Dave 
   Morrow
   Sent: Tuesday, November 08, 2005 1:51 PM
   To: Asterisk Users Mailing List - Non-Commercial Discussion
   Subject: [Asterisk-Users] Extension Ring on Multiple Phones
  
  
  
   Hi all.  I wonder if anyone out there has a dial-plan which will
  ring an
   extension on multiple phones.
  
   David A. Morrow
 
  ___
  --Bandwidth and Colocation provided by Easynews.com --
 
  asterisk-users mailing list
  To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 
  
  
  
 --
  --
  
  ___
  --Bandwidth and Colocation provided by Easynews.com --
  
  asterisk-users mailing list
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 --
 Larry Alkoff N2LA - Austin TX
 Using Thunderbird on Linux
 ___
 --Bandwidth and Colocation provided by Easynews.com --
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 



___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2006-08-29 Thread William Piper
The whole thing.
Both (old and new)have the same exten and the same priority, you can't do that and expect it to work properly.
The new extenwill call all 3 phones at the same time, whoever answers first gets the call.
If you want it to callSIP/120 first and if they don't answer then ring to all 3, you'd want to do this:
exten =_879677[67],1,Dial(SIP/120|20) ;this will ring for 20 seconds then go to priority 2.exten =_879677[67],2,Dial(SIP/120SIP/122SIP/124)bp

On 8/29/06, Larry Alkoff [EMAIL PROTECTED] wrote:
Color me puzzled.What part of: exten = _879677[67],1,Dial(SIP/120)should be deleted?Larry
William Piper wrote: Sounds like you still have the old exten still there. Make sure you get rid of: exten = _879677[67],1,Dial(SIP/120) bp On 8/29/06, Larry Alkoff 
[EMAIL PROTECTED] wrote: This is a reply to a fairly old thread. My EXTEN string is meant to ring 3 phones (will increase to 12) thus:
 old: exten =_879677[67],1,Dial(SIP/120); works fine new: exten =_879677[67],1,Dial(SIP/120SIP/122SIP/124) I edit extensions.conf to the new line above, type 'reload' into the
 CLI, see the new line with 'show dialplan' and actually see the new line above, but when I dial the DID 879-6777 it rings on extension 120 only. Have I missed a step?
 Larry Jonathan k. Creasy wrote:  EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE) 
   From: [EMAIL PROTECTED]  [mailto:
[EMAIL PROTECTED]] On Behalf Of Dave  Morrow  Sent: Tuesday, November 08, 2005 1:51 PM  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: [Asterisk-Users] Extension Ring on Multiple Phones Hi all.I wonder if anyone out there has a dial-plan which will ring an
  extension on multiple phones.   David A. Morrow ___ --Bandwidth and Colocation provided by 
Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: 
http://lists.digium.com/mailman/listinfo/asterisk-users  ___
 --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users--Larry Alkoff N2LA - Austin TXUsing Thunderbird on Linux___--Bandwidth and Colocation provided by 
Easynews.com --asterisk-users mailing listTo UNSUBSCRIBE or update options visit:http://lists.digium.com/mailman/listinfo/asterisk-users

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-09 Thread Dave Morrow
Nonetheless .. Thanks everyone for the responses!  I think I have it
now!  You guys are great! 


David A. Morrow
Technical Systems Lead
Autodata Solutions Company
[EMAIL PROTECTED]
http://www.autodata.net
Tel: (519) 951-6079
Fax: (519) 451-6615 

 Poor planning on your part does not necessarily constitute an
emergency on my part! 

This message has originated from Autodata Solutions. The attached
material is the Confidential and Proprietary Information of Autodata
Solutions. This email and any files transmitted with it are confidential
and intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please delete
this message and notify the Autodata system administrator at
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jonathan
k. Creasy
Sent: Tuesday, November 08, 2005 4:33 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [Asterisk-Users] Extension Ring on Multiple Phones

I guess I should have read up further before I posted a response. 


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:asterisk-users- 
 [EMAIL PROTECTED] On Behalf Of Mojo with Horan  Company, LLC
 Sent: Tuesday, November 08, 2005 2:51 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 
 Like instead of
 exten = s,1,Dial(SIP/110,20,tr)
 you must mean
 exten = s,1,Dial(SIP/110SIP/112,20,tr) ?  Just append all extensions

 you wish to ring, separated by
ampersands
 ().  The first one to answer will be winner.
 
 That's what I think you're asking, at least.
 
 Moj
 
 Dave Morrow wrote:
  Hi all.  I wonder if anyone out there has a dial-plan which will
ring an
  extension on multiple phones.
 
  David A. Morrow
  Technical Systems Lead
  Autodata Solutions Company
  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
  _http://www.autodata.net_
  Tel: (519) 951-6079
  Fax: (519) 451-6615
 
   Poor planning on your part does not necessarily constitute an 
  emergency on my part! 
 
  This message has originated from Autodata Solutions. The attached 
  material is the Confidential and Proprietary Information of Autodata

  Solutions. This email and any files transmitted with it are
confidential
  and intended solely for the use of the individual or entity to whom
they
  are addressed. If you have received this email in error please
delete
  this message and notify the Autodata system administrator at_ 
  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]_
 
 
 

 
  ___
  --Bandwidth and Colocation sponsored by Easynews.com --
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 
 --
 Mojo [EMAIL PROTECTED]
 Office Manger, Horan  Company, LLC
 (907) 747- x112
 ___
 --Bandwidth and Colocation sponsored by Easynews.com --
 
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Dave Morrow
Title: Extension Ring on Multiple Phones






Hi all. I wonder if anyone out there has a dial-plan which will ring an extension on multiple phones.


David A. Morrow

Technical Systems Lead

Autodata Solutions Company

[EMAIL PROTECTED]

http://www.autodata.net

Tel: (519) 951-6079

Fax: (519) 451-6615 


 Poor planning on your part does not necessarily constitute an emergency on my part! 


This message has originated from Autodata Solutions. The attached material is the Confidential and Proprietary Information of Autodata Solutions. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please delete this message and notify the Autodata system administrator at [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Joe Pukepail

Here is what we use for our helpdesk, on saturday morning we have other people fill in on the helpdesk so we ring other extensions between 8am-3pm on Saturday, otherwise it rights 392 and 6001 when people call the helpdesk (x355 or x4357)


exten = 4357,1,GotoIfTime(8:00-15:00|sat|*|?default,4357,10)exten = 4357,2,Dial(Sip/392Sip/6001,20,rt)exten = 4357,3,Voicemail,u4357exten = 4357,10,Dial(Sip/392Sip/6001Sip/249Sip/458Sip/394,20,rt)
exten = 4357,11,Voicemail,u4357exten = 4357,103,Voicemail,b4357
exten = 355,1,GotoIfTime(8:00-15:00|sat|*|?default,4357,10)exten = 355,2,Dial(Sip/392Sip/6001,20,rt)exten = 355,3,Voicemail,u4357exten = 355,103,Voicemail,b4357
On 11/8/05, Dave Morrow [EMAIL PROTECTED] wrote:

Hi all. I wonder if anyone out there has a dial-plan which will ring an extension on multiple phones. 
David A. Morrow Technical Systems Lead Autodata Solutions Company 
[EMAIL PROTECTED] 
http://www.autodata.net Tel: (519) 951-6079 Fax: (519) 451-6615 
 Poor planning on your part does not necessarily constitute an emergency on my part!  
This message has originated from Autodata Solutions. The attached material is the Confidential and Proprietary Information of Autodata Solutions. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please delete this message and notify the Autodata system administrator at
 [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]
___--Bandwidth and Colocation sponsored by Easynews.com
 --Asterisk-Users mailing listAsterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-usersTo UNSUBSCRIBE or update options visit: 
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Mojo with Horan Company, LLC

Like instead of
exten = s,1,Dial(SIP/110,20,tr)
you must mean
exten = s,1,Dial(SIP/110SIP/112,20,tr)
?  Just append all extensions you wish to ring, separated by ampersands 
().  The first one to answer will be winner.


That's what I think you're asking, at least.

Moj

Dave Morrow wrote:
Hi all.  I wonder if anyone out there has a dial-plan which will ring an 
extension on multiple phones.


David A. Morrow
Technical Systems Lead
Autodata Solutions Company
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
_http://www.autodata.net_
Tel: (519) 951-6079
Fax: (519) 451-6615 

 Poor planning on your part does not necessarily constitute an 
emergency on my part! 


This message has originated from Autodata Solutions. The attached 
material is the Confidential and Proprietary Information of Autodata 
Solutions. This email and any files transmitted with it are confidential 
and intended solely for the use of the individual or entity to whom they 
are addressed. If you have received this email in error please delete 
this message and notify the Autodata system administrator at_ 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]_





___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


--
Mojo [EMAIL PROTECTED]
Office Manger, Horan  Company, LLC
(907) 747- x112
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Jonathan k. Creasy
Title: Extension Ring on Multiple Phones








EXTEN= 100,1,DIAL(SIP/ONESIP/TWOSIP/THREE)













From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Morrow
Sent: Tuesday, November 08, 2005 1:51
PM
To: Asterisk Users Mailing List -
Non-Commercial Discussion
Subject: [Asterisk-Users]
Extension Ring on Multiple Phones





Hi
all. I wonder if anyone out there has a dial-plan which will ring an
extension on multiple phones. 

David
A. Morrow 
Technical
Systems Lead 
Autodata
Solutions Company 
[EMAIL PROTECTED]

http://www.autodata.net

Tel:
(519) 951-6079 
Fax:
(519) 451-6615


 Poor planning on your part does not necessarily
constitute an emergency on my part!  

This
message has originated from Autodata Solutions. The attached material is the
Confidential and Proprietary Information of Autodata Solutions. This email and
any files transmitted with it are confidential and intended solely for the use
of the individual or entity to whom they are addressed. If you have received
this email in error please delete this message and notify the Autodata system
administrator at [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]








___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

RE: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Jonathan k. Creasy
I guess I should have read up further before I posted a response. 


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:asterisk-users-
 [EMAIL PROTECTED] On Behalf Of Mojo with Horan  Company, LLC
 Sent: Tuesday, November 08, 2005 2:51 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [Asterisk-Users] Extension Ring on Multiple Phones
 
 Like instead of
 exten = s,1,Dial(SIP/110,20,tr)
 you must mean
 exten = s,1,Dial(SIP/110SIP/112,20,tr)
 ?  Just append all extensions you wish to ring, separated by
ampersands
 ().  The first one to answer will be winner.
 
 That's what I think you're asking, at least.
 
 Moj
 
 Dave Morrow wrote:
  Hi all.  I wonder if anyone out there has a dial-plan which will
ring an
  extension on multiple phones.
 
  David A. Morrow
  Technical Systems Lead
  Autodata Solutions Company
  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
  _http://www.autodata.net_
  Tel: (519) 951-6079
  Fax: (519) 451-6615
 
   Poor planning on your part does not necessarily constitute an
  emergency on my part! 
 
  This message has originated from Autodata Solutions. The attached
  material is the Confidential and Proprietary Information of Autodata
  Solutions. This email and any files transmitted with it are
confidential
  and intended solely for the use of the individual or entity to whom
they
  are addressed. If you have received this email in error please
delete
  this message and notify the Autodata system administrator at_
  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]_
 
 
 

 
  ___
  --Bandwidth and Colocation sponsored by Easynews.com --
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 
 --
 Mojo [EMAIL PROTECTED]
 Office Manger, Horan  Company, LLC
 (907) 747- x112
 ___
 --Bandwidth and Colocation sponsored by Easynews.com --
 
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Extension Ring on Multiple Phones

2005-11-08 Thread Matt Riddell
Jonathan k. Creasy wrote:
 I guess I should have read up further before I posted a response. 

Nah, it's all good.  If multiple people post replies to questions, then it
helps to confirm the truth of a statement!

:D

-- 
Cheers,

Matt Riddell
___

http://www.sineapps.com/news.php (Daily Asterisk News - html)
http://freevoip.gedameurope.com (Free Asterisk Voip Community)
http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)

___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users