CDRs in different files

How to setup asterisk to generate different CDR file for every sip user?

sip.conf:

[vlada]
type=friend
srvlookup=yes
username=vlada
secret=***
SetAccountCode = acc_vlada

; For every user CDR account is matched with it’s name in a ;cdr_custom.conf

cdr-custom.conf:

[mappings]
acc_vlada.csv => “${CDR(clid)}”,"${CDR(src)}","${CDR(dst)}","${CDR(channel)}","${CDR(dstchannel)}","${CDR(lastapp)}","${CDR(duration)}", “${CDR(billsec)}”

acc_miloscomic.csv => “${CDR(clid)}”,"${CDR(src)}","${CDR(dst)}","${CDR(channel)}","${CDR(dstchannel)}","${CDR(lastapp)}","${CDR(duration)}", “${CDR(billsec)}”

acc_zoran.csv => “${CDR(clid)}”,"${CDR(src)}","${CDR(dst)}","${CDR(channel)}","${CDR(dstchannel)}","${CDR(lastapp)}","${CDR(duration)}", “${CDR(billsec)}”

For that setting asterisk creates only acc_zoran.csv where it puts information about all calls.
What must I do to solve this problem?

Thx in advance

Vlada

Make each user have its own account code.

Ian

I already did that, and wrote in on previous post "; For every user CDR account is matched with it’s name in a cdr_custom.conf "

Anything else?

Thx for the reply!

Any idea? Somebody…