123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <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/cdr_curl/post.php"/> -->
- <!-- 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="false"/>
-
- <!-- 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: if enabled this will disable CA root certificate checks by libcurl -->
- <!-- note: default value is disabled. only enable if you want this! -->
- <!-- <param name="ignore-cacert-check" value="true" /> -->
- </settings>
- </configuration>
|