<span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse; ">hello,<div><br></div><div>I can receive and send a fax in php already.</div><div><br></div><div>Now, I want to set a specific fxo port, not the whole gateway, to send a fax. </div>
<div><br></div><div>What configuration should I set? </div><div><div><br></div><div>The environment is described as follow:</div><div><br></div><div>a freeswitch server based on winxp. </div><div>server ip: 192.168.1.1</div>
<div><br></div><div><div><div>a <a href="http://www.welltech.com/product_e_0r.htm" target="_blank" style="color: rgb(42, 93, 176); ">WellGate 2644</a> gateway which has 4 fxo and 4 fxs. each fxs/fxo port can register an sip account to freeswitch</div>
</div></div><div>gateway ip: 192.168.1.2</div><div><br></div><div>i config my gateway as below in freeswitch:</div><div><div>    &lt;gateways&gt;</div><div>      &lt;gateway name=&quot;faxgw&quot;&gt;</div><div><span style="white-space: pre-wrap; ">        </span>&lt;param name=&quot;username&quot; value=&quot;0000&quot;/&gt;</div>
<div><span style="white-space: pre-wrap; ">        </span>&lt;param name=&quot;password&quot; value=&quot;0000&quot;/&gt;</div><div><span style="white-space: pre-wrap; ">        </span>&lt;param name=&quot;realm&quot; value=&quot;192.168.1.2&quot;/&gt;</div>
<div>        &lt;param name=&quot;register&quot; value=&quot;false&quot;/&gt;</div><div>      &lt;/gateway&gt;</div><div>    &lt;/gateways&gt;</div><div> </div></div><div><br></div></div><div>the gateway register 2 user as below</div>
<div><div><div><div><div><div><div><div>  &lt;user id=&quot;pstn_fxo1&quot;&gt;</div><div>    &lt;params&gt;</div><div>      &lt;param name=&quot;password&quot; value=&quot;1234&quot; /&gt;</div><div>    &lt;/params&gt;</div>
<div>    &lt;variables&gt;</div><div>      &lt;variable name=&quot;user_context&quot; value=&quot;default&quot;/&gt;</div><div>      &lt;variable name=&quot;toll_allow&quot; value=&quot;domestic,international,local&quot; /&gt;</div>
<div>      &lt;variable name=&quot;effective_caller_id_name&quot; value=&quot;pstn_fxo1&quot; /&gt;</div><div>    &lt;/variables&gt;</div><div>  &lt;/user&gt;</div></div><div><br></div><div><div><div><div><div>  &lt;user id=&quot;pstn_fxo2&quot;&gt;</div>
<div>    &lt;params&gt;</div><div>      &lt;param name=&quot;password&quot; value=&quot;1234&quot; /&gt;</div><div>    &lt;/params&gt;</div><div>    &lt;variables&gt;</div><div>      &lt;variable name=&quot;user_context&quot; value=&quot;default&quot;/&gt;</div>
<div>      &lt;variable name=&quot;toll_allow&quot; value=&quot;domestic,international,local&quot; /&gt;</div><div>      &lt;variable name=&quot;effective_caller_id_name&quot; value=&quot;pstn_fxo2&quot; /&gt;</div><div>    &lt;/variables&gt;</div>
<div>  &lt;/user&gt;</div></div><div><br></div></div></div></div></div></div></div></div></div></div><div><br></div><div>in my php file, i can send the fax via fxo1 pstn line (use <a href="http://wiki.freeswitch.org/wiki/PHP_Event_Socket" target="_blank" style="color: rgb(42, 93, 176); ">event_socket_request</a>) and the command is </div>
<div>&quot;api originate sofia/gateway/faxgw/&quot;. $dest_phone_number. &quot; &amp;txfax(tmp.tif)&quot;</div><div><br></div><div>my problem is</div><div>1. How to send fax via fxo2 pstn line</div><div>    Should i bridge to user &quot;pstn_fxo2&quot; first and then dial number?</div>
<div>    I try to use</div><div>    &quot;api originate sofia/internal/pstn_fxo2 &quot;.$dest_phone_number. &quot; &amp;txfax(tmp.tif)&quot;</div><div>    but it didnt work</div><div><br></div><div>2. In &lt;gateway&gt; config</div>
<div>    The &quot;username&quot; and &quot;password&quot; seem no effect. I just set the &quot;realm&quot; to my gateway ip and it works.</div><div>    And the &quot;register&quot; i dont know it too.</div><div>    The document didnt describe it clearly, can u explain it for me</div>
<div><br></div><div>Thank you sincerely.</div><div><br></div><div>Joy</div></span>