[asterisk-bugs] [Asterisk 0015471]: cdr_custom produces incorrect csv format for clid
Asterisk Bug Tracker
noreply at bugs.digium.com
Mon Sep 14 09:45:50 CDT 2009
The following issue has been ASSIGNED.
======================================================================
https://issues.asterisk.org/view.php?id=15471
======================================================================
Reported By: dkerr
Assigned To: mnick
======================================================================
Project: Asterisk
Issue ID: 15471
Category: CDR/cdr_custom
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
Asterisk Version: 1.4.25.1
Regression: No
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
======================================================================
Date Submitted: 2009-07-08 20:27 CDT
Last Modified: 2009-09-14 09:45 CDT
======================================================================
Summary: cdr_custom produces incorrect csv format for clid
Description:
The csv file produced when cdr_custom is enabled is incorrect and cannot be
parsed by any csv parser (including excel, open office, php, perl, etc.
etc.. The problem occurs in the handling of caller ID strings.
Take this example template for cdr_custom.conf.
[mappings]
Master.csv => "${CDR(clid)}","${CDR(src)}","${CDR(dst)}"
This specifies quoted CSV. The problem is that the format of a caller ID
is
'"lastname, firstname" <123456>'
Which contains quoted text. The cdr_custom file produced would look like
this...
""lastname, firstname" <123456>","123456","100"
The correct format (which is produced by Asterisk default logging) is...
"""lastname, firstname"" <123456>","123456","100"
Note that quotes (") are translated into two consecutive quotes ("").
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
2009-09-14 09:45 russell Status new => assigned
2009-09-14 09:45 russell Assigned To => mnick
======================================================================
More information about the asterisk-bugs
mailing list