This is the part where the ACC module is setup:<br><br>...<br># ----- acc params -----<br>/* what sepcial events should be accounted ? */<br>modparam(&quot;acc&quot;, &quot;early_media&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;report_ack&quot;, 1)<br>

modparam(&quot;acc&quot;, &quot;report_cancels&quot;, 1)<br>/* by default ww do not adjust the direct of the sequential requests.<br>   if you enable this parameter, be sure the enable &quot;append_fromtag&quot;<br>   in &quot;rr&quot; module */<br>

modparam(&quot;acc&quot;, &quot;detect_direction&quot;, 0)<br>/* account triggers (flags) */<br>modparam(&quot;acc&quot;, &quot;failed_transaction_flag&quot;, 3)<br>modparam(&quot;acc&quot;, &quot;log_flag&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;log_missed_flag&quot;, 2)<br>

/* uncomment the following lines to enable DB accounting also */<br>modparam(&quot;acc&quot;, &quot;db_flag&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;db_missed_flag&quot;, 2)<br>modparam(&quot;acc&quot;, &quot;db_url&quot;, &quot;mysql://opensips:opensipsrw@localhost/opensips&quot;) #Pointer to the DB<br>

modparam(&quot;acc&quot;, &quot;db_extra&quot;, &quot;caller_id=$fu; callee_id=$tu&quot;)<br>...<br><br><br>and this is the part where the INVITE for an initial request is handled...<br><br>...<br>        # record routing<br>

        if (!is_method(&quot;REGISTER|MESSAGE&quot;))<br>                record_route();<br><b><br>        # account only INVITEs<br>        xlog(&quot;mozaa - about to check if it&#39;s an INVITE...&quot;);<br>        if (is_method(&quot;INVITE&quot;)) {<br>

                xlog(&quot;mozaa - yes, it is. Setting flag&quot;);<br>                setflag(1); # do accounting<br>        }<br>        xlog(&quot;mozaa - INVITE check done&quot;);</b><br><br>        if (!uri==myself)<br>

        ## replace with following line if multi-domain support is used<br>        ##if (!is_uri_host_local())<br>        {<br>                append_hf(&quot;P-hint: outbound\r\n&quot;); <br>...<br><br>...and these are the traces being written to the log:<br>

<br>...<br>Nov 10 16:18:04 s18 /opt/opensipsnotls/sbin/opensips[8997]: mozaa - about to check if it&#39;s an INVITE...<br>Nov 10 16:18:04 s18 /opt/opensipsnotls/sbin/opensips[8997]: DBG:core:pv_printf: final buffer length 32<br>

Nov 10 16:18:04 s18 /opt/opensipsnotls/sbin/opensips[8997]: mozaa - yes, it is. Setting flag<br>Nov 10 16:18:04 s18 /opt/opensipsnotls/sbin/opensips[8997]: DBG:core:pv_printf: final buffer length 25<br>Nov 10 16:18:04 s18 /opt/opensipsnotls/sbin/opensips[8997]: mozaa - INVITE check done<br>

...<br><br><div class="gmail_quote">On Wed, Nov 10, 2010 at 4:02 PM, Brett Nemeroff <span dir="ltr">&lt;<a href="mailto:brett@nemeroff.com">brett@nemeroff.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div class="im"><div>On Wed, Nov 10, 2010 at 5:16 AM, David Santiago <span dir="ltr">&lt;<a href="mailto:david.santiago@almiralabs.com" target="_blank">david.santiago@almiralabs.com</a>&gt;</span> wrote:</div></div><div>
<div class="gmail_quote">
<div class="im"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Modified... and still no records in the ACC table nor errors in the syslog (although I have set the debug level to 9).<div><div></div><div><br></div></div></blockquote><div><br></div></div>Are you sure you are looking at the right logs? Put some xlogs into your code and be sure they show up as well. <div>



<br></div><div>If you have acc loaded up, the db params set **and the db flag set during the INVITE**, you should either get an acc record or an error while debug is up.</div><div><br></div><div>I&#39;ve seen cases where depending on configuration and linux distro that it&#39;s tricky to tell which logfile is being written to. Or rather, perhaps it&#39;s not being written to the log you&#39;re expecting.</div>



<div><br></div><div>-Brett</div><div> </div></div></div>
</blockquote></div><br>