My SER distributes calls to a bunch of Asterisk servers. Here's my route:<br><br>route{<br> setflag(1);<br><br> if (!mf_process_maxfwd_header("10")) {<br> log("LOG: Too many hops\n");
<br> sl_send_reply("483","Too Many Hops");<br> return;<br> };<br><br> if (loose_route()) {<br> t_relay();<br> return;<br> };
<br><br> if(uri==myself) {<br> if(method=="REGISTER") {<br> save("location");<br> return;<br> };<br> };<br><br>
if(method=="INVITE") {<br> record_route();<br><br> if (uri=~"^sip:1[0-9]*{<a href="mailto:10}@192.168.1.10">10}@192.168.1.10</a>") {<br> ds_select_dst("2", "0");
<br> forward(uri:host, uri:port);<br> return;<br> };<br> };<br>}<br><br>I am trying to log all calls including failed, busy, congestion, incomplete using acc. Strangely, in my acc table I only see records affiliated with BYE and not with INVITE. Thru, all I see are successful calls. Is there a way I can make acc log incomplete calls?
<br><br>