2006-05-09 23:23:05 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<document type="freeswitch/xml">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#comment
|
|
|
|
All comments starting with #command will be preprocessed and never sent to the xml parser
|
|
|
|
Valid instructions:
|
|
|
|
#include ==> Include another file to this exact point
|
|
|
|
(partial xml should be encased in <include></include> tags)
|
|
|
|
#set ==> Set a global variable (can be expanded during preprocessing with $$ variables)
|
|
|
|
(note the double $$ which denotes preprocessor variables)
|
|
|
|
#comment ==> A general comment such as this
|
|
|
|
|
2007-01-24 15:28:54 -05:00
|
|
|
The preprocessor will compile the full xml document to ${prefix}/log/freeswitch.registry
|
2007-01-22 20:12:47 -05:00
|
|
|
Don't modify it while freeswitch is running cos it is mem mapped in most cases =D
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--#set "domain=mydomain.com"-->
|
|
|
|
<!--#set "subdomain=sub.mydomain.com"-->
|
2007-01-23 13:22:42 -05:00
|
|
|
<!--#set "default_codecs=PCMU@20i"-->
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--my domain is $${domain}-->
|
2006-05-12 15:28:21 -04:00
|
|
|
<section name="configuration" description="Various Configuration">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#include "switch.conf.xml"-->
|
|
|
|
<!--#include "modules.conf.xml"-->
|
|
|
|
<!--#include "spidermonkey.conf.xml"-->
|
|
|
|
<!--#include "event_multicast.conf.xml"-->
|
|
|
|
<!--#include "event_socket.conf.xml"-->
|
|
|
|
<!--#include "iax.conf.xml"-->
|
|
|
|
<!--#include "console.conf.xml"-->
|
|
|
|
<!--#include "sofia.conf.xml"-->
|
|
|
|
<!--#include "syslog.conf.xml"-->
|
|
|
|
<!--#include "woomera.conf.xml"-->
|
|
|
|
<!--#include "wanpipe.conf.xml"-->
|
|
|
|
<!--#include "portaudio.conf.xml"-->
|
|
|
|
<!--#include "zeroconf.conf.xml"-->
|
|
|
|
<!--#include "xmpp_event.conf.xml"-->
|
|
|
|
<!--#include "dialplan_directory.conf.xml"-->
|
|
|
|
<!--#include "dingaling.conf.xml"-->
|
|
|
|
<!--#include "xml_curl.conf.xml"-->
|
|
|
|
<!--#include "xml_rpc.conf.xml"-->
|
|
|
|
<!--#include "rss.conf.xml"-->
|
|
|
|
<!--#include "conference.conf.xml"-->
|
|
|
|
<!--#include "enum.conf.xml"-->
|
|
|
|
<!--#include "ivr.conf.xml"-->
|
2006-05-12 15:28:21 -04:00
|
|
|
</section>
|
2006-09-30 20:21:06 -04:00
|
|
|
|
2006-05-12 15:28:21 -04:00
|
|
|
<section name="dialplan" description="Regex/XML Dialplan">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#include "default_context.xml"-->
|
2006-05-12 15:36:05 -04:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section name="directory" description="User Directory">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#include "directory.xml"-->
|
2006-05-12 15:36:05 -04:00
|
|
|
</section>
|
2006-12-20 16:25:14 -05:00
|
|
|
|
|
|
|
<!-- phrases section (under development still) -->
|
|
|
|
<section name="phrases" description="Speech Phrase Management">
|
|
|
|
<macros>
|
|
|
|
<language name="en" sound_path="/snds" tts_engine="cepstral" tts_voice="david">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#include "lang_en.xml"-->
|
2006-12-20 16:25:14 -05:00
|
|
|
</language>
|
|
|
|
<language name="fr" sound_path="/var/sounds/lang/fr/jean" tts_engine="cepstral" tts_voice="jean-pierre">
|
2007-01-22 20:12:47 -05:00
|
|
|
<!--#include "lang_fr.xml"-->
|
2006-12-20 16:25:14 -05:00
|
|
|
</language>
|
|
|
|
</macros>
|
|
|
|
</section>
|
2006-09-29 20:00:07 -04:00
|
|
|
|
2007-01-22 20:12:47 -05:00
|
|
|
</document>
|
2006-05-12 15:36:05 -04:00
|
|
|
|