[Astpp-commit] SF.net SVN: astpp:[2283] trunk/freeswitch/conf
Brought to you by:
darrenkw
|
From: <dar...@us...> - 2009-10-06 05:01:14
|
Revision: 2283
http://astpp.svn.sourceforge.net/astpp/?rev=2283&view=rev
Author: darrenkw
Date: 2009-10-06 05:01:08 +0000 (Tue, 06 Oct 2009)
Log Message:
-----------
Add/update freeswitch sample files.
Modified Paths:
--------------
trunk/freeswitch/conf/xml_curl.conf.xml
Added Paths:
-----------
trunk/freeswitch/conf/cdr_csv.conf.xml
trunk/freeswitch/conf/xml_cdr.conf.xml
Added: trunk/freeswitch/conf/cdr_csv.conf.xml
===================================================================
--- trunk/freeswitch/conf/cdr_csv.conf.xml (rev 0)
+++ trunk/freeswitch/conf/cdr_csv.conf.xml 2009-10-06 05:01:08 UTC (rev 2283)
@@ -0,0 +1,17 @@
+<configuration name="cdr_csv.conf" description="CDR CSV Format">
+ <settings>
+ <!-- 'cdr-csv' will always be appended to log-base -->
+ <!--<param name="log-base" value="/var/log"/>-->
+ <param name="default-template" value="astpp"/>
+ <!-- This is like the info app but after the call is hung up -->
+ <!--<param name="debug" value="true"/>-->
+ <param name="rotate-on-hup" value="true"/>
+ <!-- may be a b or ab -->
+ <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>
+ <template name="astpp">"${accountcode}","${caller_id_number}","${destination_number}","${context}","${caller_id}","${channel_name}","${bridge_channel}","${last_app}","${last_arg}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${amaflags}","${uuid}","uf=${userfield},pt=${progress_time},pmt=${progress_media_time}","${read_codec}","${write_codec}","none","none"</template>
+ </templates>
+</configuration>
+
Added: trunk/freeswitch/conf/xml_cdr.conf.xml
===================================================================
--- trunk/freeswitch/conf/xml_cdr.conf.xml (rev 0)
+++ trunk/freeswitch/conf/xml_cdr.conf.xml 2009-10-06 05:01:08 UTC (rev 2283)
@@ -0,0 +1,67 @@
+<configuration name="xml_cdr.conf" description="XML CDR CURL logger">
+ <settings>
+ <!-- the url to post to if blank web posting is disabled -->
+
+ <param name="url" value="http://localhost/cgi-bin/astpp-fs-xml.cgi"/>
+<!-- <param name="url" value="http://localhost/perl/astpp-fs-xml.pl"/> -->
+
+ <!-- optional: credentials to send to web server -->
+ <!-- <param name="cred" value="user:pass"/> -->
+
+ <!-- the total number of retries (not counting the first 'try') to post to webserver incase of failure -->
+ <param name="retries" value="2"/>
+
+ <!-- delay between retries in seconds, default is 5 seconds -->
+ <!-- <param name="delay" value="1"/> -->
+
+ <!-- optional: if not present we do not log every record to disk -->
+ <!-- either an absolute path, a relative path assuming ${prefix}/logs or a blank value will default to ${prefix}/logs/xml_cdr -->
+ <param name="log-dir" value=""/>
+
+ <!-- optional: if not present we do log the b leg -->
+ <!-- true or false if we should create a cdr for the b leg of a call-->
+ <param name="log-b-leg" value="true"/>
+
+ <!-- optional: if not present, all filenames are the uuid of the call -->
+ <!-- true or false if a leg files are prefixed "a_" -->
+ <param name="prefix-a-leg" value="true"/>
+
+ <!-- encode the post data may be 'true' for url encoding, 'false' for no encoding or 'base64' for base64 encoding -->
+ <param name="encode" value="true"/>
+
+ <!-- optional: set to true to disable Expect: 100-continue lighttpd requires this setting -->
+ <!--<param name="disable-100-continue" value="true"/>-->
+
+ <!-- optional: full path to the error log dir for failed web posts if not specified its the same as log-dir -->
+ <!-- either an absolute path, a relative path assuming ${prefix}/logs or a blank or omitted value will default to ${prefix}/logs/xml_cdr -->
+ <!-- <param name="err-log-dir" value="/tmp"/> -->
+
+ <!-- optional: this will enable the CA root certificate check by libcurl to
+ verify that the certificate was issued by a major Certificate Authority.
+ note: default value is disabled. only enable if you want this! -->
+ <!--<param name="enable-cacert-check" value="true"/>-->
+ <!-- optional: verify that the server is actually the one listed in the cert -->
+ <!-- <param name="enable-ssl-verifyhost" value="true"/> -->
+
+ <!-- optional: these options can be used to specify custom SSL certificates
+ to use for HTTPS communications. Either use both options or neither.
+ Specify your public key with 'ssl-cert-path' and the private key with
+ 'ssl-key-path'. If your private key has a password, specify it with
+ 'ssl-key-password'. -->
+ <!-- <param name="ssl-cert-path" value="$${base_dir}/conf/certs/public_key.pem"/> -->
+ <!-- <param name="ssl-key-path" value="$${base_dir}/conf/certs/private_key.pem"/> -->
+ <!-- <param name="ssl-key-password" value="MyPrivateKeyPassword"/> -->
+
+ <!-- optional: use a custom CA certificate in PEM format to verify the peer
+ with. This is useful if you are acting as your own certificate authority.
+ note: only makes sense if used in combination with "enable-cacert-check." -->
+ <!-- <param name="ssl-cacert-file" value="$${base_dir}/conf/certs/cacert.pem"/> -->
+
+ <!-- optional: specify the SSL version to force HTTPS to use. Valid options are
+ "SSLv3" and "TLSv1". Otherwise libcurl will auto-negotiate the version. -->
+ <!-- <param name="ssl-version" value="TLSv1"/> -->
+
+ <!-- optional: enables cookies and stores them in the specified file. -->
+ <!-- <param name="cookie-file" value="/tmp/cookie-mod_xml_curl.txt"/> -->
+ </settings>
+</configuration>
Modified: trunk/freeswitch/conf/xml_curl.conf.xml
===================================================================
--- trunk/freeswitch/conf/xml_curl.conf.xml 2009-10-06 03:56:05 UTC (rev 2282)
+++ trunk/freeswitch/conf/xml_curl.conf.xml 2009-10-06 05:01:08 UTC (rev 2283)
@@ -6,7 +6,9 @@
need it) -->
<!-- one or more |-delim of configuration|directory|dialplan -->
- <param name="gateway-url" value="http://localhost/cgi-bin/astpp-fs-xml.pl" bindings="dialplan"/>
+ <param name="gateway-url" value="http://localhost/cgi-bin/astpp-fs-xml.cgi" bindings="dialplan|directory"/>
+<!-- <param name="gateway-url" value="http://localhost/perl/astpp-fs-xml.pl" bindings="dialplan|directory"/> -->
+
<!-- set this to provide authentication credentials to the server -->
<!--<param name="gateway-credentials" value="muser:mypass"/>-->
<!-- set to true to disable Expect: 100-continue lighttpd requires this setting -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|