<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 29, 2021 at 4:40 PM <<a href="mailto:asterisk@phreaknet.org">asterisk@phreaknet.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 9/29/2021 4:38 PM, Jerry Geis wrote:<br>
><br>
><br>
> On Wed, Sep 29, 2021 at 4:31 PM <<a href="mailto:asterisk@phreaknet.org" target="_blank">asterisk@phreaknet.org</a><br>
> <mailto:<a href="mailto:asterisk@phreaknet.org" target="_blank">asterisk@phreaknet.org</a>>> wrote:<br>
><br>
>     On 9/29/2021 4:08 PM, Jerry Geis wrote:<br>
>     > I need to call 1 number and that number and bring 3 phones into a<br>
>     > confbridge.<br>
>     > I tried this:<br>
>     ><br>
>     > ; PHONE CONF   - Phone group Conf                              <br>
>          <br>
>     >                  <br>
>     > exten => 63,1,Originate(SIP/401,exten,63,join_conf)<br>
>     > exten => 63,2,Originate(SIP/402,exten,63,join_conf)<br>
>     > exten => 63,3,Originate(SIP/404,exten,63,join_conf)<br>
>     > exten => 63(join_conf),n,ConfBridge(63,MyConfBridge,MyConfUser)<br>
>     ><br>
>     > The problem is this waits till 401 answers -before calling 402<br>
>     and so<br>
>     > forth.<br>
>     > I need to "call" each one "now" and bring into the conference.<br>
>     ><br>
>     > How do I do that ? I want all 3 ringing at the same time - and<br>
>     then as<br>
>     > they answer they are brought into the conference.<br>
><br>
>     Use the "a" option for asynchronous operation.<br>
>     e.g. exten => 63,1,Originate(SIP/401,exten,63,join_conf,,a)<br>
><br>
>     > Thanks<br>
>     ><br>
>     > Jerry<br>
><br>
><br>
> I tried this and got an error:<br>
> Originate("SIP/122-00000021", "SIP/401,exten,63,join_conf,,a") in new<br>
> stack<br>
> [Sep 29 16:35:48] NOTICE[49708][C-000027b0]: app_originate.c:222<br>
> originate_exec: Invalid timeout: 'a'. Setting timeout to 30 second<br>
Whoops, you need 2 commas actually, not 1, since you didn't specify a<br>
priority.<br>
Full usage explained here:<br>
<a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Application_Originate" rel="noreferrer" target="_blank">https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Application_Originate</a></blockquote><div><br></div><div>Awesome this does work.</div><div>Originate(SIP/401,exten,63,join_conf,,,a)</div><div><br></div><div>jerry </div></div></div>