<div dir="ltr"><br><div>Now that I have solved the problem of loading the dialplan from the xml files ... I get to the point that it doesn&#39;t work as I expect.</div><div><br></div><div>This is the only extension defined:</div><div><br></div><div><span style="font-family:monospace"><span style="color:rgb(0,0,0)">&lt;context name=&quot;default&quot;&gt;
</span><br>  &lt;extension name=&quot;t38_transcode&quot;&gt;
<br>   &lt;condition field=&quot;sip_h_X-T38-Transcode&quot; expresion=&quot;^True&quot;/&gt;
<br>   &lt;condition field=&quot;destination_number&quot; expresion=&quot;^(\+1|1)([2-9]\d\d[2-9]\d{6})$&quot;&gt;
<br>     &lt;action application=&quot;set&quot; data=&quot;fax_enable_t38=true&quot;/&gt;
<br>     &lt;action application=&quot;set&quot; data=&quot;sip_execute_on_image=t38_gateway peer nocng&quot;/&gt;
<br>     &lt;action application=&quot;bridge&quot; data=&quot;sofia/external/$1$2@proxy.server.tld&quot;/&gt;
<br>   &lt;/condition&gt;
<br>  &lt;/extension&gt;
<br>&lt;/context&gt;<br></span></div><div><br></div><div>I expect not to call the bridge app if there is no T38-Transcode header on the incoming INVITE request and if it is present ... that $1$2 will be filled ... but what I get on the traces is that any call fires the call to the bridge app and also that the dialled number is exactly $1$2 ... instead of the values they should have.</div><div>I&#39;m loading a minimal setup of modules, did I need to load someother one to get the conditions and the expresions to work on this simple dialplan?</div><div><br></div><div>My modules.conf.xml file:</div><div><br></div><div><span style="font-family:monospace"><span style="color:rgb(0,0,0)">&lt;configuration name=&quot;modules.conf&quot; description=&quot;Modules&quot;&gt;
</span><br>  &lt;modules&gt;
<br>
<br>    &lt;load module=&quot;mod_syslog&quot;/&gt;
<br>    &lt;load module=&quot;mod_logfile&quot;/&gt;
<br>
<br>    &lt;load module=&quot;mod_event_socket&quot;/&gt;
<br>    &lt;load module=&quot;mod_sofia&quot;/&gt;
<br>    &lt;load module=&quot;mod_commands&quot;/&gt;
<br>    &lt;load module=&quot;mod_dptools&quot;/&gt;
<br>    &lt;load module=&quot;mod_spandsp&quot;/&gt;
<br>    &lt;load module=&quot;mod_tone_stream&quot;/&gt;
<br>    &lt;load module=&quot;mod_db&quot;/&gt;
<br>    &lt;load module=&quot;mod_xml_rpc&quot;/&gt;
<br>    &lt;load module=&quot;mod_expr&quot;/&gt;
<br>    &lt;load module=&quot;mod_dialplan_xml&quot;/&gt;
<br>
<br>  &lt;/modules&gt;
<br>&lt;/configuration&gt;</span></div><div><span style="font-family:monospace"><br></span></div><div><span style="font-family:monospace">Best regards<br>
<br></span></div></div>