Re: [Asterisk-Users] ResponseTimeout problem

2004-11-15 Thread Patrick
On Sun, 2004-11-14 at 22:13 -0700, Joseph wrote: [snip] Yes, I was looking at it already but it is available in ver. 1.0.0 and up; I'm on 0.9 on Gentoo. Gentoo is kind of slow when it comes to Asterisk. There is an unstable ver. 1.0.2 in unstable branch but it doesn't compile (there is an

[Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Joseph
I'm trying to implement ResponseTimeout to give a customer a few extra seconds before ringing the phone. But it doesn't work or I'm doing it the wrong way. exten = s,3,BackGround(welcome) exten = s,4,ResponseTimeout,15 exten = s,5,Goto(1,1) After playing welcome message it goes straight to 1,1

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Matt Riddell
Joseph wrote: I'm trying to implement ResponseTimeout to give a customer a few extra seconds before ringing the phone. But it doesn't work or I'm doing it the wrong way. exten = s,3,BackGround(welcome) exten = s,4,ResponseTimeout,15 exten = s,5,Goto(1,1) After playing welcome message it goes

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Kevin P. Fleming
Joseph wrote: exten = s,3,BackGround(welcome) exten = s,4,ResponseTimeout,15 exten = s,5,Goto(1,1) You have misunderstood how ResponseTimeout works. It does not delay between priorities, it controls the amount of time the caller will have after the last priority is executed before Asterisk

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Joseph
[snip] I'm assuming you have snipped the priorities 1 and 2. exten = s,3,BackGround(welcome) exten = s,4,ResponseTimeout,15 exten = t,1,Goto(1,1) Description ResponseTimeout(seconds) Set the maximum amount of time permitted after falling through a series of priorities for a channel

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Josh Roberson
Joseph wrote: [snip] I'm assuming you have snipped the priorities 1 and 2. exten = s,3,BackGround(welcome) exten = s,4,ResponseTimeout,15 exten = t,1,Goto(1,1) Description ResponseTimeout(seconds) Set the maximum amount of time permitted after falling through a series of priorities for a

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Joseph
This is correct. However, if you wish to have it pause between priorities for an extension change, try using the application WaitExten. Here's a show application waitexten: -= Info about application 'WaitExten' =- Yes, I was looking at it already but it is available in ver. 1.0.0 and

Re: [Asterisk-Users] ResponseTimeout problem

2004-11-14 Thread Josh Roberson
Joseph wrote: This is correct. However, if you wish to have it pause between priorities for an extension change, try using the application WaitExten. Here's a show application waitexten: -= Info about application 'WaitExten' =- Yes, I was looking at it already but it is available in