[asterisk-users] delay to dial

2009-10-10 Thread B.Masoud @ SH
Hello all, Is there anyway that I can configure Asterisk to start dialing out from fxo after (xx) seconds from getting the dial tone? I don't want tdm card to send the number immediately because it fails many times. Thanks for any help. ___ --

Re: [asterisk-users] delay to dial

2009-10-10 Thread Doug Lytle
B.Masoud @ SH wrote: Hello all, Is there anyway that I can configure Asterisk to start dialing out from fxo after (xx) seconds from getting the dial tone? I don’t want tdm card to send the number immediately because it fails many times. You can use the w. This is from the wiki: If you

Re: [asterisk-users] delay to dial

2009-10-10 Thread B.Masoud @ SH
] On Behalf Of Doug Lytle Sent: Saturday, October 10, 2009 5:18 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] delay to dial B.Masoud @ SH wrote: Hello all, Is there anyway that I can configure Asterisk to start dialing out from fxo after (xx) seconds from

Re: [asterisk-users] delay to dial

2009-10-10 Thread John Novack
. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Doug Lytle Sent: Saturday, October 10, 2009 5:18 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] delay to dial B.Masoud

Re: [asterisk-users] delay to dial

2009-10-10 Thread Ivan Stepaniuk
John Novack wrote: B.Masoud @ SH wrote: I use elastix, I have this for dialout: exten = s,8,Dial(${OUT_${ARG1}}/${ARG2:${length}}) where should I add the w ?? right before the dialed number If I understand your code it should be: exten =

Re: [asterisk-users] delay to dial

2009-10-10 Thread Doug Lytle
Ivan Stepaniuk wrote: John I think you are wrong, I don't know elastix but the OUT_${ARG1} var seems to contain the channel technology, the 'w' should be inserted after the slash. exten = s,8,Dial(${OUT_${ARG1}}/www${ARG2:${length}}) I agree. Doug -- Ben Franklin quote: Those who

Re: [asterisk-users] delay to dial

2009-10-10 Thread B.Masoud @ SH
Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Doug Lytle Sent: Saturday, October 10, 2009 6:59 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] delay to dial Ivan Stepaniuk wrote

Re: [asterisk-users] delay to dial

2009-10-10 Thread Doug Lytle
B.Masoud @ SH wrote: I have done the changes exten = s,8,Dial(${OUT_${ARG1}}/www${ARG2:${length}}) You need to type reload at the Asterisk console Doug -- Ben Franklin quote: Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor

Re: [asterisk-users] delay to dial

2009-10-10 Thread Ivan Stepaniuk
B.Masoud @ SH wrote: I have done the changes exten = s,8,Dial(${OUT_${ARG1}}/www${ARG2:${length}}) I am getting this: -- Executing [...@macro-dialout-trunk:19] Dial(IAX2/9-11592, DAHDI/r0/0559857826|300|) in new stack -- Called r0/0559857826 Is it now on work? Or I have to

Re: [asterisk-users] delay to dial

2009-10-10 Thread B.Masoud @ SH
. -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Ivan Stepaniuk Sent: Saturday, October 10, 2009 9:14 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] delay to dial B.Masoud

Re: [asterisk-users] delay to dial

2009-10-10 Thread Ivan Stepaniuk
B.Masoud @ SH wrote: Sorry for keep asking, but I did extensions reload, and restarted asterisk, What should the message looks like? I still get the same: -- Executing [...@macro-dialout-trunk:19] Dial(IAX2/9-11592, DAHDI/r0/0559857826|300|) in new stack -- Called r0/0559857826

Re: [asterisk-users] delay to dial

2009-10-10 Thread covici
, October 10, 2009 9:14 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] delay to dial B.Masoud @ SH wrote: I have done the changes exten = s,8,Dial(${OUT_${ARG1}}/www${ARG2:${length}}) I am getting this: -- Executing [...@macro-dialout

[asterisk-users] Delay in Dial()

2007-05-01 Thread Steve Finkelstein
All, Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. I'd like to have the SIP phone ring for some arbitrary number of seconds before it is sent off to the mobile phone. Using something like a Wait() within a Dial() would

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Luki
Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. Not directly, but yes. Hint: Local channel + Wait. Something like this: Dial(SIP/phoneLocal/[EMAIL PROTECTED]) [delayed] exten = XX,1,Wait(10) exten =

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Edoardo Serra
Hi Steve, put a timeout in the Dial command, if the call isn't answered it returns after the timeout has expired e.g.: exten = _X.,1,Dial(SIP/${EXTEN}|15) It waits 15 secs for the call to be answered Look at http://www.voip-info.org/wiki-Asterisk+cmd+Dial for more informations Regards

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Eric \ManxPower\ Wieling
Steve Finkelstein wrote: All, Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. I'd like to have the SIP phone ring for some arbitrary number of seconds before it is sent off to the mobile phone. Using something like a

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Stephen Bosch
Eric ManxPower Wieling wrote: Steve Finkelstein wrote: All, Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. I'd like to have the SIP phone ring for some arbitrary number of seconds before it is sent off to the mobile

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Eric \ManxPower\ Wieling
Stephen Bosch wrote: Eric ManxPower Wieling wrote: Steve Finkelstein wrote: All, Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. I'd like to have the SIP phone ring for some arbitrary number of seconds before it is

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Steve Finkelstein
It's amazing how simple some answer are. Thank you kindly for your responses Edoardo and Luki. :-) - sf Edoardo Serra wrote: Hi Steve, put a timeout in the Dial command, if the call isn't answered it returns after the timeout has expired e.g.: exten = _X.,1,Dial(SIP/${EXTEN}|15) It

Re: [asterisk-users] Delay in Dial()

2007-05-01 Thread Remco Post
Eric ManxPower Wieling wrote: Stephen Bosch wrote: Eric ManxPower Wieling wrote: Steve Finkelstein wrote: All, Is there any syntax I can use to put a delay in two lines being dialed? One is a SIP endpoint, the other is my cell phone. I'd like to have the SIP phone ring for some arbitrary

[Asterisk-Users] Delay in dial

2005-09-28 Thread yusuf
Hi all, I am using Asterisk CVS, and I am getting a huge delay in dialing SIP. This Asterisk box is taking calls from a PABX over ZAP, then dialing SIP users. So, a user '0251' dials from his phone, the PABX sends it the my Asterisk box, no delay, then I get a 15 sec delay, before it actually

Re: [Asterisk-Users] Delay in dial

2005-09-28 Thread Andy Kuo
Hi, Try taking out Answer in your extensions.conf. You don't need to answer before dialing a SIP channel. cheers. AK On 9/28/05, yusuf [EMAIL PROTECTED] wrote: Hi all,I am using Asterisk CVS, and I am getting a huge delay in dialing SIP.This Asterisk box is taking calls from a PABX over ZAP,

Re: [Asterisk-Users] Delay in dial

2005-09-28 Thread steve
On Wed, 28 Sep 2005, yusuf wrote: I am using Asterisk CVS, and I am getting a huge delay in dialing SIP. This Asterisk box is taking calls from a PABX over ZAP, then dialing SIP users. So, a user '0251' dials from his phone, the PABX sends it the my Asterisk box, no delay, then I get a

[Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Jerry Geis
I am searching for a way to add a 2 second delay before calling out with Dial(). Sometimes I get the message you must first dial a 1 to place this call. I presume the phone company is missing the first digit pulsed out sometimes. How do I put a 2 second delay after coming offhook and before

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Samy Kamkar
Jerry Geis wrote: I am searching for a way to add a 2 second delay before calling out with Dial(). Sometimes I get the message you must first dial a 1 to place this call. I presume the phone company is missing the first digit pulsed out sometimes. How do I put a 2 second delay after coming

[Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Jerry Geis
Samy, Thanks for the suggestion - however I am confused on the wiki the 'w' stands for: *w*: Allow the /called/ user to start recording after pressing *1 or what defined in features.conf (Asterisk v1.0.x) This is not a delay of any kind. Jerry [Asterisk-Users] delay before dial

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Samy Kamkar
] delay before dial on TDM04B *Samy Kamkar* samy at fonality.com mailto:asterisk-users%40lists.digium.com?Subject=%5BAsterisk-Users%5D%20delay%20before%20dial%20on%20TDM04BIn-Reply-To=43134CDA.4020408%40pagestation.com /Mon Aug 29 13:07:05 CDT 2005/ * Previous message: [Asterisk-Users] delay

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread John Novack
[Asterisk-Users] delay before dial on TDM04B *Samy Kamkar* samy at fonality.com mailto:asterisk-users%40lists.digium.com?Subject=%5BAsterisk-Users%5D%20delay%20before%20dial%20on%20TDM04BIn-Reply-To=43134CDA.4020408%40pagestation.com /Mon Aug 29 13:07:05 CDT 2005/ * Previous message

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Rich Adamson
I am searching for a way to add a 2 second delay before calling out with Dial(). Sometimes I get the message you must first dial a 1 to place this call. I presume the phone company is missing the first digit pulsed out sometimes. How do I put a 2 second delay after coming offhook and

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread John Novack
Rich Adamson wrote: I am searching for a way to add a 2 second delay before calling out with Dial(). Sometimes I get the message you must first dial a 1 to place this call. I presume the phone company is missing the first digit pulsed out sometimes. How do I put a 2 second delay after coming

[Asterisk-Users] delay before dial on TDM04B - continued

2005-08-29 Thread Jerry Geis
I tried adding to my dial string... It appears to not made any differnece. I see by watching show channels that the w's are there in the dial. I have this box connected to bell south down in georgia. I have an identical box connected in indiana. The box in indiana works fine when dialing

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Rich Adamson
I am searching for a way to add a 2 second delay before calling out with Dial(). Sometimes I get the message you must first dial a 1 to place this call. I presume the phone company is missing the first digit pulsed out sometimes. How do I put a 2 second delay after coming offhook and before

Re: [Asterisk-Users] delay before dial on TDM04B - continued

2005-08-29 Thread John Novack
Jerry Geis wrote: I tried adding to my dial string... It appears to not made any differnece. I see by watching show channels that the w's are there in the dial. I have this box connected to bell south down in georgia. I have an identical box connected in indiana. The box in indiana

Re: [Asterisk-Users] delay before dial on TDM04B - continued

2005-08-29 Thread Rich Adamson
I tried adding to my dial string... It appears to not made any differnece. I see by watching show channels that the w's are there in the dial. I have this box connected to bell south down in georgia. I have an identical box connected in indiana. The box in indiana works fine when

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread John Novack
Rich Adamson wrote: snip Don't know, but in most dtmf CO's, a single w is more then adequate. Once in a great while a second might be needed. The issue is that some CO's have to attach an internal receiver to accept the dtmf (or dialpulse), and some CO's are rather slow to do that. The

Re: [Asterisk-Users] delay before dial on TDM04B

2005-08-29 Thread Rich Adamson
Don't know, but in most dtmf CO's, a single w is more then adequate. Once in a great while a second might be needed. Agreed, but it seems, from results by others that it doesn't work all the time even in DTMF Every one that I've helped with inserting the w worked just fine assuming they

[Asterisk-Users] delay before dial on TDM04B - continued - poosibly solved

2005-08-29 Thread Jerry Geis
I have turned off call progress in zapata.conf and things seem to be working better. Jerry -- / I tried adding to my dial string... It appears to not made any // differnece. // I see by watching show channels that the w's are there in the dial. // // I have this box connected to

[Asterisk-Users] Delay after Dial Application is Called

2005-01-18 Thread Brian J. Rathman
I just recently loaded a new Asterisk server running the CVS code from 12/3/04. I have been running a previous CVS version without any problems from 6/5/04. On the new server I have noticed an issue where when I place a call from one of my snom 190 phones, I see immediatly as I should: --

RE: [Asterisk-Users] Delay after Dial Application is Called

2005-01-18 Thread Brian West
Its not app dial.. its SIP bkw -Original Message- From: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Brian J. Rathman Sent: Tuesday, January 18, 2005 11:45 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Delay after Dial Application