I am forwarding calls to my cell when a caller presses 1 so I have it setup like this:
exten => 1,1,Background(pls-hold-while-try) ;if you press 1 you get my cell phone
exten => 1,2,Dial(SIP/voipdiscount/my cell number here)
exten => 1,3,Hangup
I tried to do this:
exten => 1,1,Background(pls-hold-while-try) ;if you press 1 you get my cell phone
exten => 1,2,MusicOnHold(default)
exten => 1,3,Dial(SIP/voipdiscount/my cell number here)
exten => 1,4,Hangup
When using the 2nd code snippet, it never rings my cell so I’m thinking there is a bit more I need to put in there. It just plays music forever. Can anyone help me out?
Thanks!