Re: [asterisk-users] 'Start' in extension rules

2007-10-14 Thread Eric ManxPower Wieling
Tilghman Lesher wrote: On Saturday 13 October 2007 18:08:49 Turbo Fredriksson wrote: Quoting Philipp Kempgen [EMAIL PROTECTED]: exten = s,1,Answer() exten = s,n,Goto(s-${DIALSTATUS},1) This still doesn't make sense because you did not Dial() before jumping based on ${DIALSTATUS}. Ok, make

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Philipp Kempgen
Turbo Fredriksson wrote: I can't seem to get the [s]tart to work in my extensions... - s n i p - [default] exten = s,n,Goto(s-${DIALSTATUS},1) The first priority in an extension must be 1 not n. exten = s-BUSY,1,Voicemail(${EXTEN}, b) Don't put any spaces in the app data.

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Baji Panchumarti
On 10/13/07, Turbo Fredriksson [EMAIL PROTECTED] wrote: Setting debug shows that it skipps the 's' parts... Why? because you don't seem to have exten = s,1,something. -- ___ --Bandwidth and Colocation Provided by http://www.api-digital.com--

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Doug Lytle
Turbo Fredriksson wrote: I can't seem to get the [s]tart to work in my extensions... - s n i p - [default] exten = s,n,Goto(s-${DIALSTATUS},1) exten = s-BUSY,1,Voicemail(${EXTEN}, b) The extensions 's' needs to start with a priority of 1. For example: exten = s,1,Answer()

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Turbo Fredriksson
Quoting Philipp Kempgen [EMAIL PROTECTED]: Turbo Fredriksson wrote: I can't seem to get the [s]tart to work in my extensions... - s n i p - [default] exten = s,n,Goto(s-${DIALSTATUS},1) The first priority in an extension must be 1 not n. Actually, I did. I just had it commented

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Philipp Kempgen
Turbo Fredriksson wrote: Quoting Philipp Kempgen [EMAIL PROTECTED]: Turbo Fredriksson wrote: I can't seem to get the [s]tart to work in my extensions... - s n i p - [default] exten = s,n,Goto(s-${DIALSTATUS},1) The first priority in an extension must be 1 not n. Actually, I

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Steve Edwards
On Sat, 13 Oct 2007, Turbo Fredriksson wrote: Turbo Fredriksson wrote: I can't seem to get the [s]tart to work in my extensions... When a dialplan doesn't work as you expect, show dialplan [context] is your friend. Reply with show dialplan default and you may get a more specific

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Turbo Fredriksson
Quoting Philipp Kempgen [EMAIL PROTECTED]: exten = s,1,Answer() exten = s,n,Goto(s-${DIALSTATUS},1) This still doesn't make sense because you did not Dial() before jumping based on ${DIALSTATUS}. Ok, make sense. But still no go: - s n i p - [default] exten = s,1,Answer() exten =

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Tilghman Lesher
On Saturday 13 October 2007 18:08:49 Turbo Fredriksson wrote: Quoting Philipp Kempgen [EMAIL PROTECTED]: exten = s,1,Answer() exten = s,n,Goto(s-${DIALSTATUS},1) This still doesn't make sense because you did not Dial() before jumping based on ${DIALSTATUS}. Ok, make sense. But still

Re: [asterisk-users] 'Start' in extension rules

2007-10-13 Thread Philipp Kempgen
Turbo Fredriksson wrote: Quoting Philipp Kempgen [EMAIL PROTECTED]: exten = s,1,Answer() exten = s,n,Goto(s-${DIALSTATUS},1) This still doesn't make sense because you did not Dial() before jumping based on ${DIALSTATUS}. Ok, make sense. But still no go: - s n i p - [default]