<p>That's a great news. I will pool the changes tomorrow and continue testing. As for the messed calls I allready ditch them from the db.</p>
<div class="gmail_quote">On Jun 21, 2012 6:28 PM, "Andrew Pogrebennyk" <<a href="mailto:apogrebennyk@sipwise.com">apogrebennyk@sipwise.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Vladimir,<br>
<br>
the fix has been pushed to the 2.5 repository, running 'apt-get update;<br>
apt-get upgrade' should give you the fixed package.<br>
<br>
The important part is that the top of your ROUTE_INVITE in<br>
proxy.cfg.customtt.tt2 should look like this:<br>
<br>
        if($var(from_pstn) == 1)<br>
        {<br>
                $avp(s:acc_caller_user) = $fU;<br>
                $avp(s:acc_caller_domain) = $avp(s:ip);<br>
        }<br>
        else if($avp(s:from_faxserver) != 1 && $var(cf_loop) != 1)<br>
        {<br>
                # if coming from CF loop, it's already passed by header<br>
                # for normal calls, set it using From<br>
                $avp(s:acc_caller_user) = $fU;<br>
                $avp(s:acc_caller_domain) = $fd;<br>
        }<br>
        if($var(cf_loop) != 1)<br>
        {<br>
                $(avp(s:acc_state)[*]) = "call";<br>
        }<br>
<br>
<br>
Then you can find and drop or fix the kamailio.acc record which are<br>
missing acc_state field. Select them:<br>
mysql kamailio -e 'select * from acc where src_leg like "%||133%" or<br>
src_leg like "%||134%"\G'<br>
<br>
So in order to fix those records where *second last* field in src_leg is<br>
empty you can put there "call" like "...|0|call|1334833583.482825".<br>
<br>
Thank you for the report.<br>
<br>
On 06/20/2012 09:13 PM, Andrew Pogrebennyk wrote:<br>
> Vladimir,<br>
> I'm setting myself a reminder to check this tomorrow.<br>
> Thank you for your patience.<br>
><br>
> On 06/18/2012 08:25 PM, Vladimir Grujic wrote:<br>
>> I do, but i did a diff and changes I've made are very minor and do not<br>
>> touch routing logic (I've added couple of short numbers and forward them<br>
>> to asterisk for sam apps there)<br>
>><br>
>> Vladimir<br>
>><br>
>><br>
>> On Mon, Jun 18, 2012 at 7:51 PM, Jon Bonilla <<a href="mailto:jbonilla@sipwise.com">jbonilla@sipwise.com</a><br>
>> <mailto:<a href="mailto:jbonilla@sipwise.com">jbonilla@sipwise.com</a>>> wrote:<br>
>><br>
>>     El Mon, 18 Jun 2012 18:34:37 +0200<br>
>>     Vladimir Grujic <<a href="mailto:hyperbabac@gmail.com">hyperbabac@gmail.com</a> <mailto:<a href="mailto:hyperbabac@gmail.com">hyperbabac@gmail.com</a>>><br>
>>     escribió:<br>
>><br>
>>     > It's latest and greatest 2.5.<br>
>>     ><br>
>>     > :)<br>
>>     ><br>
>>     > Vladimir<br>
>>     ><br>
>>     ><br>
>><br>
>>     do you use customtt.tt2 files?<br>
>><br>
>><br>
>>     _______________________________________________<br>
>>     Spce-user mailing list<br>
>>     <a href="mailto:Spce-user@lists.sipwise.com">Spce-user@lists.sipwise.com</a> <mailto:<a href="mailto:Spce-user@lists.sipwise.com">Spce-user@lists.sipwise.com</a>><br>
>>     <a href="http://lists.sipwise.com/listinfo/spce-user" target="_blank">http://lists.sipwise.com/listinfo/spce-user</a><br>
>><br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> Spce-user mailing list<br>
>> <a href="mailto:Spce-user@lists.sipwise.com">Spce-user@lists.sipwise.com</a><br>
>> <a href="http://lists.sipwise.com/listinfo/spce-user" target="_blank">http://lists.sipwise.com/listinfo/spce-user</a><br>
><br>
<br>
</blockquote></div>