Re: [Asterisk-Users] Playing the invalid extension input

2004-06-29 Thread Eric Wieling
On Tue, 2004-06-29 at 09:53, Isamar Maia wrote: I'm trying to do the following: exten = i,1,Saydigits(${EXTEN}) My intention is to play the invalid input to the user, but it doesn't work. At that pint ${EXTEN} is i. Try using ${INVALID_EXTEN} -- Eric Wieling * BTEL

Re: [Asterisk-Users] Playing the invalid extension input

2004-06-29 Thread Steven Critchfield
On Tue, 2004-06-29 at 09:53, Isamar Maia wrote: I'm trying to do the following: exten = i,1,Saydigits(${EXTEN}) My intention is to play the invalid input to the user, but it doesn't work. Second time in 2 days, What extention are you at exten = i? If you want to readback and invalid

RE: [Asterisk-Users] Playing the invalid extension input

2004-06-29 Thread Whisker, Peter
Maybe it is trying to say i as a digit? You could have an [invalid] context with [invalid] exten = _.,1,Saydigits(${EXTEN}) and then include it at the very end of the [default] context (or wherever you want to use it). That would then pick up anything that drops through. If you do it any other

Re: [Asterisk-Users] Playing the invalid extension input

2004-06-29 Thread Olle E. Johansson
Eric Wieling wrote: On Tue, 2004-06-29 at 09:53, Isamar Maia wrote: I'm trying to do the following: exten = i,1,Saydigits(${EXTEN}) My intention is to play the invalid input to the user, but it doesn't work. At that pint ${EXTEN} is i. Try using ${INVALID_EXTEN} Eric, Thank you, I've added that