hi community,<br><br>I&#39;m new to this list &amp; asterisk in general, so let me first say thx to everybody involved in providing such great tools &amp; ressources!!<br><br>I&#39;m currently trying to implement a simple voicebox-system. 
<br>for demonstration purposes, I&#39;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&#39;s my dialplan for this scenario:<br><br>[demo]<br>exten =&gt; s,1,Answer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Answer the line<br>exten =&gt; s,n,Set(TIMEOUT(digit)=5)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Set Digit Timeout to 5 seconds<br>exten =&gt; s,n,Set(TIMEOUT(response)=10)&nbsp; ; Set Response Timeout to 10 seconds
<br>exten =&gt; s,n(restart),BackGround(my-intro)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Play a congratulatory message<br>exten =&gt; s,n,WaitExten(5)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Wait for an extension to be dialed.<br><br>exten =&gt; 1,1,Voicemail(1001,u)
<br>exten =&gt; 2,1,Voicemail(1002,u)<br>...<br>exten =&gt; 9,1,Voicemail(1009,u)<br>exten =&gt; 10,1,Voicemail(1010,u)<br>exten =&gt; 11,1,Voicemail(1011,u)<br><br><br>now basically this seems to work - when I&#39;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. &quot;11&quot;, asterisk seems to get only the first digit and forwards mit to extension &quot;1&quot;. somehow it seems only the first digit is processed correctly...<br><br>I&#39;ve no idea if this is a basic misunderstanding of the concept (sorry, newbie...), or maybe just a particular problem I&#39;m having with the cellphone (however I tried both nokia 6630 &amp; nokia n73 with the same results).
<br><br>any help greatly appreciated, thx again!<br><br><br>michael<br>