Re: [Asterisk-Users] Delays in IVR

2005-12-27 Thread Adam Moffett
;extensions for dan and adam ;dan - since people already know dan as extension 3, we keep that for compatibility exten = 3,1,GoTo(Pleximenu|103|1) exten = 103,1,GoTo(default|103|1) ;adam exten = 104,1,GoTo(default|104|1) The bottom of the dialplan

Re: [Asterisk-Users] Delays in IVR

2005-12-27 Thread BJ Weschke
On 12/27/05, Adam Moffett [EMAIL PROTECTED] wrote: ;extensions for dan and adam ;dan - since people already know dan as extension 3, we keep that for compatibility exten = 3,1,GoTo(Pleximenu|103|1) exten = 103,1,GoTo(default|103|1) ;adam exten

Re: [Asterisk-Users] Delays in IVR

2005-12-27 Thread Rich Adamson
;extensions for dan and adam ;dan - since people already know dan as extension 3, we keep that for compatibility exten = 3,1,GoTo(Pleximenu|103|1) exten = 103,1,GoTo(default|103|1) ;adam exten = 104,1,GoTo(default|104|1) The

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread Eric \ManxPower\ Wieling
Adam Moffett wrote: I set up an IVR awhile back. press 1 for sales, press 2 for support etc etc. Everything works fine except when you enter your option there is a 7 or 8 second pause before the next step is taken in the dial plan. I assume it's waiting to see if I'm going to dial more

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread BJ Weschke
On 12/26/05, Adam Moffett [EMAIL PROTECTED] wrote: I set up an IVR awhile back. press 1 for sales, press 2 for support etc etc. Everything works fine except when you enter your option there is a 7 or 8 second pause before the next step is taken in the dial plan. I assume it's waiting to

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread Adam Moffett
I set up an IVR awhile back. press 1 for sales, press 2 for support etc etc. Everything works fine except when you enter your option there is a 7 or 8 second pause before the next step is taken in the dial plan. I assume it's waiting to see if I'm going to dial more digits, but is

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread Adam Moffett
Please post the appropriate section in extensions.conf that is responsible for the IVR's operation. You asked for it. The pleximenu context is reached from the default context by a simple goto, as in: exten = [ourphonenumber],1,GoTo(pleximenu|s|1) Everything works as I expect it to

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread C F
The delay is caused because asterisk has found more than one extension matching the digit dialed (for example if your extensions start with 1 i.e. 11,12, and so on, then when the person presses 1, and the context that the IVR is in has access to the extensions context, asterisk has more than 1

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread Eric \ManxPower\ Wieling
Imagine this: [fnord-context] exten = 1,1,Noop(Selection 1) exten = 2,1,Noop(Selection 2) exten = 3,1,Noop(Selection 3) exten = 4,1,Noop(Selection 4) exten = _XXX,1,Noop(Wants to call ${EXTEN}) When you dial option 2 how does Asterisk know you don't want to call extension 200? In the

Re: [Asterisk-Users] Delays in IVR

2005-12-26 Thread BJ Weschke
On 12/26/05, Adam Moffett [EMAIL PROTECTED] wrote: Please post the appropriate section in extensions.conf that is responsible for the IVR's operation. You asked for it. The pleximenu context is reached from the default context by a simple goto, as in: exten =