hi community,<br><br>I'm new to this list & asterisk in general, so let me first say thx to everybody involved in providing such great tools & ressources!!<br><br>I'm currently trying to implement a simple voicebox-system.
<br>for demonstration purposes, I've successfully connected my cellphone via bluetooth using the current chan_cellphone-patch on the current SVN-version of asterisk. everything seems to work fine so far (great patch!)
<br><br>what I want to achieve:<br><br>* incoming call arrives<br>* asterisk/cellphone answers<br>* caller is greeted (playback of my-intro) <br>* caller enters an extension<br>* caller is directly forwarded to the voicemail of entered extension
<br><br>here's my dialplan for this scenario:<br><br>[demo]<br>exten => s,1,Answer ; Answer the line<br>exten => s,n,Set(TIMEOUT(digit)=5) ; Set Digit Timeout to 5 seconds<br>exten => s,n,Set(TIMEOUT(response)=10) ; Set Response Timeout to 10 seconds
<br>exten => s,n(restart),BackGround(my-intro) ; Play a congratulatory message<br>exten => s,n,WaitExten(5) ; Wait for an extension to be dialed.<br><br>exten => 1,1,Voicemail(1001,u)
<br>exten => 2,1,Voicemail(1002,u)<br>...<br>exten => 9,1,Voicemail(1009,u)<br>exten => 10,1,Voicemail(1010,u)<br>exten => 11,1,Voicemail(1011,u)<br><br><br>now basically this seems to work - when I'm calling in, I can press 1-9 and am connected to the right mailbox. however, apparantly this is only working for extension with a length of 1! when I try to enter
f.e. "11", asterisk seems to get only the first digit and forwards mit to extension "1". somehow it seems only the first digit is processed correctly...<br><br>I've no idea if this is a basic misunderstanding of the concept (sorry, newbie...), or maybe just a particular problem I'm having with the cellphone (however I tried both nokia 6630 & nokia n73 with the same results).
<br><br>any help greatly appreciated, thx again!<br><br><br>michael<br>