Hi All,<br><br>I&#39;m having some troubles with using call files.  <br><br>I&#39;m 
trying to establish the following: <br>- want to use call files to connect two 
(outside) extensions <br>- want to use the outbound routes set in FreePBX <br>- 
want to set the outgoing callerid for both calls <br>- want to set a custom CDR 
field in MySQL ( field name &#39;azonosito&#39; ) <br><br>Asterisk is version 1.8.2.3  with freepbx 2.8.1.<br><br>What I&#39;ve tried is to create 
two custom context and place the call through them. <br><br>The call file: <br><pre>; First CID<br>SetVar: callid1=0036111188887777<br>SetVar: azon1=elso hivas azonosito { Viperke }<br>; Frist phone num<br>Channel: Local/0036701234567@CustomCallOut-1<br>
WaitTime: 45<br>MaxRetries: 0<br>RetryTime: 0<br>; 2nd CID<br>SetVar: callid2=0036204313763<br>SetVar: azon2=masodik hivas azonosito { V1pr: ehehhe }<br>Context: CustomCallOut-2<br>; 2nd phone num<br>Extension: 003617654321<br>
</pre><br><br>The contexts: <br><pre>[CustomCallOut-1]<br>; set custom CDR<br>exten =&gt; _0X.,1,Set(CDR(azonosito)=${azon1})<br>exten =&gt; _0X.,n,Set(CALLERPRES()=allowed)<br>exten =&gt; _0X.,n,Set(CALLERID(number)=&lt;${callid1}&gt;)<br>
exten =&gt; _0X.,n,Set(KEEPCID=TRUE)<br>; pass the call to internal routing<br>include =&gt; from-internal<br><br>[CustomCallOut-2]<br>exten =&gt; _0X.,1,Wait(1)<br>; set custom CDR<br>exten =&gt; _0X.,2,Set(CDR(azonosito)=${azon2})<br>
exten =&gt; _0X.,3,Playtones(ring)<br>exten =&gt; _0X.,n,Set(CALLERPRES()=allowed)<br>exten =&gt; _0X.,n,Set(CALLERID(number)=&lt;${callid2}&gt;)<br>exten =&gt; _0X.,n,Set(KEEPCID=TRUE)<br>; pass the call to internal routing<br>
include =&gt; from-internal<br></pre><br><br>However the two calls are placed, the CDRs and the callerids are 
set correctly, we can&#39;t hear each other. As I saw in the logs, the problem is 
that the calls are placed in the same context, and not being connected ( like 
one call, but with the variable EXTEN changed ). <br><br>I&#39;m really confused 
about doing this, so can you please advise?<br><br>Thanks,<br><br>        Tamas<br><br>