Dial Plan Troubles,

Hello All, :question:

I am new to this so thank you in advance for your patience. I am having an issue with dial plans and Im sure Im just doing something wrong.

Here is what I would expect, call is answered, says press 1 for info, 2 for sales, and 3 for support, caller selects 1 and hears greeting press 1 for Al or 2 for Betty, users selects 1 and is connected to Betty.

Here is what I get, call is answered, says press 1 for info, 2 for sales, and 3 for support, caller selects 1 and hears greeting press 1 for Al and 2 for Betty, users selects 1 however the greeting continues to play and ignores the digits.

Any insight you can lend I would be greatful for.

Here is an example of what I am doing

[internal]
exten => 100,1,Goto(incoming,100,1)

[incoming]
exten => 100,1,Answer()
exten => 100,n,Wait(1.5)
exten => 100,n,Playback(Greeting) ; 1 for info 2 for sales 3 for support

exten => 1,1,Goto(info,100,1)
exten => 2,1,Goto(sales,100,1)
exten => 3,1,Goto(supprt,100,1)

exten => t,1,Goto(incoming,100,1)

[info]
exten => 100,1,Playback(InfoGreeting) ; 1 for Al, 2 for Betty

exten => 1,1,Dial(SIP/Al)

exten => 2,1,Dial(SIP/Betty)

exten => t,1,Goto(info,100,1)

[sales]
exten => 100,1,Playback(SalesGreeting) ; 1 for Al, 2 for Betty

exten => 1,1,Dial(SIP/Al)

exten => 2,1,Dial(SIP/Betty)

exten => t,1,Goto(sales,100,1)

[support]
exten => 100,1,Playback(SupportGreeting) ; 1 for Al, 2 for Betty

exten => 1,1,Dial(SIP/Al)

exten => 2,1,Dial(SIP/Betty)

exten => t,1,Goto(support,100,1)

use background see link

voip-info.org/wiki/index.php … Background

thank you :blush:

I knew I had to be doing something stupid. That fixed it great.