mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-05 11:51:52 +00:00
7a6303d6b3
The default "vanilla" configuration that comes with FreeSWITCH has been designed as a showcase of the configurability of the myriad of features that FreeSWITCH comes with out of the box. While it is very helpful in tinkering with FreeSWITCH, it has a lot of extraneous stuff enabled/configured for use in a production system. This configuration aims to take the reverse stance -- it attempts to be a starting point for configuring a new system by "adding" required features (instead of removing them as one would do if one starts with the default configuration). Jira: FS-7362 Source: https://github.com/mx4492/freeswitch-minimal-conf/commit/270941d6f2dca279f1bb8762d072940273d5ae11
12 lines
564 B
XML
12 lines
564 B
XML
<configuration name="cdr_csv.conf" description="CDR CSV Format">
|
|
<settings>
|
|
<param name="default-template" value="example"/>
|
|
<param name="rotate-on-hup" value="true"/>
|
|
<param name="legs" value="ab"/>
|
|
</settings>
|
|
|
|
<templates>
|
|
<template name="example">"${caller_id_name}","${caller_id_number}","${destination_number}","${context}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${uuid}","${bleg_uuid}","${accountcode}","${read_codec}","${write_codec}"</template>
|
|
</templates>
|
|
</configuration>
|