Hello,<br><br>I have a generic RTPproxy config with PSTN forwarding. In my INVITE route, I have the following:<br><br> if(!allow_trusted()) {<br><br> if (!proxy_authorize("","subscriber_active")) {
<br> proxy_challenge("","0");<br> return;<br> } else if (!check_from()) {<br> sl_send_reply("403", "Use From=ID");
<br> return;<br> };<br><br> consume_credentials();<br> };<br><br>when the invite comes from an IP that's not in the trusted table, the call goes thru but the BYE is not forwarded to the initiating party. How could proxy_authorize affect the route?
<br><br>ScriptHead<br>