The feature can be enabled on outbound and inbound calls by connecting both channels of a connected call to a conference room after the connection is made. This accomplishes your need to not do anything vs. giving the called person instructions, transferring the call to a conference room and then dialing into it immediately. For example, if the conference room is 999 for phone 999, and phone 999 uses the context [all-outbound-for-999] for outbound calls and [all-inbound-for-999], then:<br>

<br>[all-outbound-for-999]<br>; outbound dialing through a conference room<br>exten =&gt; _NXXNXXXXXX,1,MeetMeCount(999,COUNT-999);<br>exten =&gt; _NXXNXXXXXX,2,GotoIf($[&quot;${COUNT-999}&quot;&gt;=&quot;1&quot;]?10);<br>

exten =&gt; _NXXNXXXXXX,3,Set(CALLERID(num)=5550000999);<br>exten =&gt; _NXXNXXXXXX,4,Set(CALLERID(name)=Phone 999);<br>exten =&gt; _NXXNXXXXXX,5,Dial(${TRUNK}/${EXTEN},99,G(6));<br>exten =&gt; _NXXNXXXXXX,6,MeetMe(999,FAqx);<br>

exten =&gt; _NXXNXXXXXX,7,MeetMe(999,Fqx);<br><br>; bypass the conference room for multiple outbound calls<br>exten =&gt; _NXXNXXXXXX,10,Set(CALLERID(num)=5550000999);<br>exten =&gt; _NXXNXXXXXX,11,Set(CALLERID(name)=Phone 999);<br>

exten =&gt; _NXXNXXXXXX,12,Dial(${TRUNK}/${EXTEN});<br><br>[all-inbound-for-999]<br>; inbound extension through a conference room<br>exten =&gt; 999,1,MeetMeCount(999,COUNT-999);<br>exten =&gt; 999,2,GotoIf($[&quot;${COUNT-999}&quot;&gt;=&quot;1&quot;]?10);<br>

exten =&gt; 999,3,Dial(SIP/99,999,G(6));<br>exten =&gt; 999,4,Hangup;<br>exten =&gt; 999,6,MeetMe(999,FAqx);<br>exten =&gt; 999,7,MeetMe(999,Fqx);<br><br>; bypass the conference room for multiple inbound calls<br>exten =&gt; 999,10,Dial(SIP/999);<br>

<br><br><br><div class="gmail_quote">On Thu, Nov 8, 2012 at 2:01 AM, martin f krafft <span dir="ltr">&lt;<a href="mailto:madduck@madduck.net" target="_blank">madduck@madduck.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">also sprach Administrator TOOTAI &lt;<a href="mailto:admin@tootai.net" target="_blank">admin@tootai.net</a>&gt; [2012.11.08.0954 +0100]:<br>



&gt; &gt;Does anyone have a working example they would be willing to<br>
&gt; &gt;share?<br>
&gt;<br>
&gt; As said by James, you just have to transfer all parties in<br>
&gt; a conference room and then you call this conference.<br>
<br>
The scenario is usually that we are in a discussion and need a third<br>
party. I suppose I can tell the initial correspondent &quot;I will now<br>
transfer you to a conference room, enter this PIN when asked&quot;, then<br>
hang up, dial the next, and do the same.<br>
<br>
What I would like to do is to convert the current channel into<br>
a conference room, go on hold and dial a third party, and when<br>
I come back to the conference room, I bring along the third party.<br>
<br>
Put differently: I don&#39;t really want my correspondents to have to do<br>
anything, just wait and listen to MOH.<br>
<span><font color="#888888"><br>
--<br>
martin | <a href="http://madduck.net/" target="_blank">http://madduck.net/</a> | <a href="http://two.sentenc.es/" target="_blank">http://two.sentenc.es/</a><br>
<br>
&quot;nullum magnum ingenium sine mixtura dementiae fuit.&quot;<br>
                                                             -- seneca<br>
<br>
spamtraps: <a href="mailto:madduck.bogus@madduck.net" target="_blank">madduck.bogus@madduck.net</a><br>
</font></span><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>