[Freeswitch-svn] [commit] r4867 - in freeswitch/trunk: . conf

Freeswitch SVN mikej at freeswitch.org
Fri Apr 6 04:55:37 EDT 2007


Author: mikej
Date: Fri Apr  6 04:55:37 2007
New Revision: 4867

Modified:
   freeswitch/trunk/Freeswitch.sln
   freeswitch/trunk/conf/freeswitch.xml
   freeswitch/trunk/conf/freeswitch_combined.xml

Log:
add mod_cdr config files.

Modified: freeswitch/trunk/Freeswitch.sln
==============================================================================
--- freeswitch/trunk/Freeswitch.sln	(original)
+++ freeswitch/trunk/Freeswitch.sln	Fri Apr  6 04:55:37 2007
@@ -492,6 +492,7 @@
 		conf\ivr.conf.xml = conf\ivr.conf.xml
 		conf\lang_en.xml = conf\lang_en.xml
 		conf\lang_fr.xml = conf\lang_fr.xml
+		conf\mod_cdr.conf.xml = conf\mod_cdr.conf.xml
 		conf\modules.conf.xml = conf\modules.conf.xml
 		conf\portaudio.conf.xml = conf\portaudio.conf.xml
 		conf\rss.conf.xml = conf\rss.conf.xml
@@ -524,6 +525,7 @@
 		release\conf\ivr.conf.xml = release\conf\ivr.conf.xml
 		release\conf\lang_en.xml = release\conf\lang_en.xml
 		release\conf\lang_fr.xml = release\conf\lang_fr.xml
+		release\conf\mod_cdr.conf.xml = release\conf\mod_cdr.conf.xml
 		release\conf\modules.conf.xml = release\conf\modules.conf.xml
 		release\conf\portaudio.conf.xml = release\conf\portaudio.conf.xml
 		release\conf\rss.conf.xml = release\conf\rss.conf.xml
@@ -556,6 +558,7 @@
 		debug\conf\ivr.conf.xml = debug\conf\ivr.conf.xml
 		debug\conf\lang_en.xml = debug\conf\lang_en.xml
 		debug\conf\lang_fr.xml = debug\conf\lang_fr.xml
+		debug\conf\mod_cdr.conf.xml = debug\conf\mod_cdr.conf.xml
 		debug\conf\modules.conf.xml = debug\conf\modules.conf.xml
 		debug\conf\portaudio.conf.xml = debug\conf\portaudio.conf.xml
 		debug\conf\rss.conf.xml = debug\conf\rss.conf.xml

Modified: freeswitch/trunk/conf/freeswitch.xml
==============================================================================
--- freeswitch/trunk/conf/freeswitch.xml	(original)
+++ freeswitch/trunk/conf/freeswitch.xml	Fri Apr  6 04:55:37 2007
@@ -40,6 +40,7 @@
     <!--#include "conference.conf.xml"-->
     <!--#include "enum.conf.xml"-->
     <!--#include "ivr.conf.xml"-->
+    <!--#include "mod_cdr.conf.xml"-->
   </section>
   
   <section name="dialplan" description="Regex/XML Dialplan">

Modified: freeswitch/trunk/conf/freeswitch_combined.xml
==============================================================================
--- freeswitch/trunk/conf/freeswitch_combined.xml	(original)
+++ freeswitch/trunk/conf/freeswitch_combined.xml	Fri Apr  6 04:55:37 2007
@@ -524,7 +524,32 @@
 	  <entry action="menu-top" digits="*"/>
 	</menu>
       </menus>
-    </configuration> 
+    </configuration>
+    <configuration name="mod_cdr.conf" description="CDR Configuration">
+      <pddcdr>
+        <param name="path" value="/work/temp/pddcdr"/>
+        <!-- <param name="chanvars" value="username,accountcode"/> -->
+        <!-- <param name="chanvars_fixed" value="foo"/> -->
+      </pddcdr>
+      <csvcdr>
+        <param name="path" value="/work/temp/csvcdr"/>
+        <param name="size_limit" value="25"/>
+        <!-- <param name="chanvars_fixed" value="username"/> -->
+        <!-- <param name="chanvars_supp" value="*"/> -->
+        <!-- <param name="repeat_fixed_in_supp" value="0"/> -->
+      </csvcdr>
+      <mysqlcdr>
+        <param name="hostname" value="10.0.0.1"/>
+        <param name="username" value="test"/>
+        <param name="password" value="test"/>
+        <param name="dbname" value="testing"/>
+        <!-- This following line logs username as a varchar, and The_Kow as a tiny -->
+        <!-- <param name="chanvars_fixed" value="username=s,The_Kow=t"/> -->
+        <!-- If you do not want to log any and all chanvars to the chanvar table, comment the next 2 lines out -->
+        <param name="chanvars_supp" value="*"/>
+        <param name="chanvars_supp_repeat_fixed" value="0"/>
+      </mysqlcdr>
+    </configuration>
 
   </section>
   



More information about the Freeswitch-svn mailing list