On Aug 04, 2003 at 12:52, Dave Cotton <dcotton(a)linuxautrement.com> wrote:
On Mon, 2003-08-04 at 12:29, Daniel-Constantin Mierla
wrote:
Hello,
check if you have tm and print modules loaded (if you use the same piece
of config as below). Otherwise, send us line 124 from your config file.
Daniel
Effectively that was my line 124
>t_relay_to( "192.168.0.2",
"5060")
But since I mailed the list I've found a reference to t_relay_to_udp, if
I use that I no longer get this error, and ser starts with 24 processes
accompanied by 48 mysql processes, having never seen ser working
correctly so I have no idea if this is supposed to happen.
Now I get good old 483 too many hops.
if(uri=~"^sip:9[0-9]*@mydomain.com"){
log("Forwarding to PSTN\n");
# The following line is not liked
t_relay_to( "192.168.0.2", "5060");
break;
};
Instead of t_relay_to_udp try:
rewritehostport("192.168.0.10:5060");
t_relay();
(I think your pstn gateway relays the message back to you, because of
the uri).
For a better pstn config. sample see examples/pstn.cfg in the ser source
dir.
Andrei