Unable to load cdr_custom.conf. Not logging custom CSV CDRs

Hello community,
I’m having the following error in reload Asterisk 1.8.5 under Lucid.

[quote][Jul 22 12:14:34] ERROR[25637]: cdr_custom.c:86 load_config: Unable to load cdr_custom.conf. Not logging custom CSV CDRs.
[Jul 22 12:14:34] ERROR[25637]: cel_custom.c:85 load_config: Unable to load cel_custom.conf. Not logging CEL to custom CSVs.
[/quote]

The CDR files are properly being owned by asterisk as below:

[quote]ls -la /var/log/asterisk/cdr-csv
total 48
drwxrwxrwx 2 asterisk asterisk 4096 2011-07-14 20:30 .
drwxrwxrwx 5 asterisk asterisk 4096 2011-07-14 14:23 …
-rw-r–r-- 1 asterisk asterisk 401 2011-07-14 15:48 05643.csv
-rw-r–r-- 1 asterisk asterisk 4345 2011-07-21 22:36 4340111057.csv
-rw-r–r-- 1 asterisk asterisk 1276 2011-07-14 18:52 49310.csv
-rwxrwxrwx 1 asterisk asterisk 24163 2011-07-21 22:36 Master.csv
[/quote]

Any one can help me by explaining what’s mean this error, because I’m not finding anything about it around there…

Thanx in advance,

/etc/asterisk/cdr_custom.conf is missing or unreadable.

Thanks David for your prompts…

Apparently that’s file dosn’t exist, no idea why…

I have been created the file as /etc/asterisk/cdr_custom.conf own it by asterisk, within 775 permission with the following contain

[quote];
;
; Mappings for custom config file
;
; To get your CSV output in a format tailored to your liking, uncomment the
; following lines and look for the output in the cdr-custom directory (usually
; in /var/log/asterisk). Depending on which mapping you uncomment, you may see
; Master.csv, Simple.csv, or both.
;
[mappings]
Master.csv => ${CSV_QUOTE(${CDR(clid)})},${CSV_QUOTE(${CDR(src)})},${CSV_QUOTE(${CDR(dst)

; High Resolution Time for billsec and duration fields
Master.csv => ${CSV_QUOTE(${CDR(clid)})},${CSV_QUOTE(${CDR(src)})},${CSV_QUOTE(${CDR(dst)
Simple.csv => ${CSV_QUOTE(${EPOCH})},${CSV_QUOTE(${CDR(src)})},${CSV_QUOTE(${CDR(dst)})}
[/quote]

Then after reloading asterisk, the error message still there again…within cateogry context missing as:

Do you actually want custom logging? If you don’t, then you should have ignored the messages. If you actually want custom CEL logging, then generalise the process already given.