To answer my own question: I stumpled upon the RetryDial function. This is exactly what I needed! But when the function played back the audio, I couldn&#39;t hear it. I needed to open the channel, which the Dial command would normally do automatically. So I came up with this dialplan:<div>
<br></div><div><div>exten =&gt; 120,hint,SIP/Ton_Bl</div><div>exten =&gt; 120,1,Verbose(2, Incoming call for Ton)</div><div>  same =&gt; n,Dial(SIP/Ton_Bl,,tT)</div><div>  same =&gt; n,Verbose(2, Dial status ${DIALSTATUS})</div>
<div>  same =&gt; n,GotoIf($[$[${DIALSTATUS}=BUSY] | $[${DIALSTATUS}=CHANUNAVAIL]]?:doHangup)</div><div>  same =&gt; n,Answer</div><div>  same =&gt; n,Playback(wait-moment)</div><div>  same =&gt; n,RetryDial(beep-7,10,10,SIP/Ton_Bl,60,tT)</div>
<div>  same =&gt; n(doHangup),Hangup</div><div><br></div><div>I had to test for CHANUNAVAIL as well, because when I hit a call-limit, the returned status is not busy, but chanunavail. I needed to call-limit my dect phones, because they share the base stastion. The base station can only handle 3 concurrent calls, so I didn&#39;t want to occupy an extra line with a caller just &#39;waiting&#39;. This waiting could be done in Asterisk with this solution. I added &#39;call-limit=1&#39; for my dect phones in sip.conf.</div>
<div><br></div><div>Hope this is helpfull for others as well. Any other thoughts are welcome!</div><div><br><br><div class="gmail_quote">On Fri, Apr 13, 2012 at 10:36 AM, Roland <span dir="ltr">&lt;<a href="mailto:asterisk@rolandow.com">asterisk@rolandow.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<div><br></div><div>What would be the easiest way to give a SIP account his own private queue, so calls can be added while this account is busy?</div>
<div><br></div><div>While implementing our new Asterisk based telephone system, the receptionist came with the &#39;need&#39; to add a call in the queue for an extension. So if the boss on extension 100 is on the phone, she could still transfer the caller to this extension, and it will be queued after the call. The boss would hear a beep, indicating that somebody else is waiting. This is how our old analog PBX seems to work. After waiting a while, the caller would return to reception if the boss wouldn&#39;t answer (or is still talking).</div>

<div><br></div><div>I think I can accomplish this setting up a Queue with a timeout. After the timeout, the user would be returned back to reception.</div><div><br></div><div>But of course when I asked: who would you like to have a queue, the reply was: everybody!</div>

<div><br></div><div>I think I am not all to happy with giving everybody his own personal queue. Doesn&#39;t really make sense, does it?</div><div><br></div><div>Especially for our wireless DECT phones this is a problem, because I have a few handsets on a base station with their own extension number. The dect system can only handle 3 concurrent calls. I now have configured every handset to have his own SIP account. I could give every handset two sip accounts (or two lines, somehow), but then the line being in the queue, would congest the base station. Other dect system I have seen can handle 4 concurrent calls. I am afraid more base stations will cause interference on the signal.</div>

<div><br></div><div>So I think I should solve this with Asterisk. Any suggestions about queueing call to a extension (or SIP account actually) without having to configure a &#39;private&#39; queue for each sip account?</div>

<div><br></div><div>Thanks in advance!</div><div><br></div><div>Kind regards,</div><div>Roland.</div>
</blockquote></div><br></div></div>