[asterisk-users] dial multiple extensions

2011-04-30 Thread Roy Kidder
Hello, I've got a problem with something I'm doing and can't seem to figure it out. I've tried different suggestions I've found on voip-info.org as well as other sites but nothing I do seems to work. I've got an older Digium TDM400P. The FXO daughter card is connected to my POTS line and the FXS

Re: [asterisk-users] dial multiple extensions

2011-04-30 Thread Satish Patel
I don't think this will solve your issue but I would say remove r option in dial command I had same issue with iax and sip phone and I solved with that r option Hope it will help you. -- Sent from my iPhone On Apr 30, 2011, at 1:15 PM, Roy Kidder rkid...@rkidder.com wrote: Hello, I've

Re: [asterisk-users] Dial multiple extensions and know who picks up call

2010-02-02 Thread Kyle Kienapfel
@lists.digium.com Subject: [asterisk-users] Dial multiple extensions and know who picks up call Dear, I'm currently using a Dial command with multiple destinations and channels eg: Dial(SIP/100SIP/101) I simply would like to know, in real time during the call (from dial plan or AGI), who has

Re: [asterisk-users] Dial multiple extensions and know who picks up call

2009-09-10 Thread Patrick
extension using AMI. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Patrick Sent: Wednesday, September 09, 2009 9:08 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Dial multiple extensions

[asterisk-users] Dial multiple extensions and know who picks up call

2009-09-09 Thread Patrick
Dear, I'm currently using a Dial command with multiple destinations and channels eg: Dial(SIP/100SIP/101) I simply would like to know, in real time during the call (from dial plan or AGI), who has picked up the call. Can I find this information in a variable somewhere ? Thank you for your help

Re: [asterisk-users] Dial multiple extensions and know who picks up call

2009-09-09 Thread Danny Nicholas
using AMI. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Patrick Sent: Wednesday, September 09, 2009 9:08 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Dial multiple extensions and know who

Re: [asterisk-users] Dial multiple extensions and know who picks up call

2009-09-09 Thread Patrick
. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Patrick Sent: Wednesday, September 09, 2009 9:08 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Dial multiple extensions and know who picks up call

Re: [asterisk-users] Dial multiple extensions and know who picks up call

2009-09-09 Thread Jim Dickenson
, September 09, 2009 9:08 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Dial multiple extensions and know who picks up call Dear, I'm currently using a Dial command with multiple destinations and channels eg: Dial(SIP/100SIP/101) I simply would like to know, in real time

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-17 Thread Dana Olson
On Wed, 16 Mar 2005 19:58:55 -0800, Luki [EMAIL PROTECTED] wrote: Anyway, if anyone ever needs this info, they can Google it now :-). Might be a good thing for the wiki too. ;) ___ Asterisk-Users mailing list Asterisk-Users@lists.digium.com

[Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread Luki
Hi everyone, I'm wondering I would accomplish the following: I want to dial several SIP extensions simultaneously, HOWEVER, for different times (say ext 10 for 15 sec and ext 11 for 30 sec), and potentially with different headers (such as ALERT_INFO) and codecs for each extension. Obviously

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread Henry Devito
: Wednesday, March 16, 2005 5:23 PM Subject: [Asterisk-Users] Dial multiple extensions,but different variables/timeouts Hi everyone, I'm wondering I would accomplish the following: I want to dial several SIP extensions simultaneously, HOWEVER, for different times (say ext 10 for 15 sec and ext 11

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread C F
try the local channel. the local channel allows you to have: [default] exten = 123,1,Dial(${DEVICE1},30,tr) exten = 124,1,Dial(${DEVICE2},45,tr) exten = 125,1,Dial(Local/[EMAIL PROTECTED]Local/[EMAIL PROTECTED]) that will go thru the dial plan of 123 and 124. However, when I tested it for what I

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread Henry Devito
- From: Luki [EMAIL PROTECTED] To: asterisk-users@lists.digium.com Sent: Wednesday, March 16, 2005 5:23 PM Subject: [Asterisk-Users] Dial multiple extensions,but different variables/timeouts Hi everyone, I'm wondering I would accomplish the following: I want to dial several SIP extensions

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread Luki
Huh, that sounds interesting. I never knew what the local channels were for. I will give it a try. At least I know where to start now... thanks C F. --Luki On Wed, 16 Mar 2005 20:01:32 -0500, C F [EMAIL PROTECTED] wrote: try the local channel. the local channel allows you to have:

Re: [Asterisk-Users] Dial multiple extensions, but different variables/timeouts

2005-03-16 Thread Luki
OK, great... the local forking approach works great. Example: [extensions] exten = 10,1,Dial(Local/[EMAIL PROTECTED]Local/[EMAIL PROTECTED]) [test] exten = 11,1,SetVar(_SIP_CODEC=g726) exten = 11,2,SetVar(_ALERT_INFO=Bellcore-r6) exten = 11,3,Dial(SIP/11,10) exten = 12,1,SetVar(_SIP_CODEC=ulaw)