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

Freeswitch SVN brian at freeswitch.org
Mon Sep 29 01:23:30 EDT 2008


Author: brian
Date: Mon Sep 29 01:23:28 2008
New Revision: 9723

Modified:
   freeswitch/trunk/conf/directory/default.xml
   freeswitch/trunk/conf/freeswitch.xml
   freeswitch/trunk/conf/vars.xml

Log:
more info

Modified: freeswitch/trunk/conf/directory/default.xml
==============================================================================
--- freeswitch/trunk/conf/directory/default.xml	(original)
+++ freeswitch/trunk/conf/directory/default.xml	Mon Sep 29 01:23:28 2008
@@ -1,3 +1,22 @@
+<!--
+    NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
+    
+    FreeSWITCH works off the concept of users and domains just like email.
+    You have users that are in domains for example 1000 at domain.com.
+    
+    When freeswitch gets a register packet it looks for the user in the directory
+    based on the from or to domain in the packet depending on how your sofia profile
+    is configured.  Out of the box the default domain will be the IP address of the
+    machine running FreeSWITCH.  This IP can be found by typing "sofia status" at the
+    CLI.  You will register your phones to the IP and not the hostname by default.
+    If you wish to register using the domain please open vars.xml in the root conf
+    directory and set the default domain to the hostname you desire.  Then you would
+    use the domain name in the client instead of the IP address to register 
+    with FreeSWITCH.
+    
+    NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
+-->
+
 <include>
   <!--the domain or ip (the right hand side of the @ in the addr-->
   <domain name="$${domain}">

Modified: freeswitch/trunk/conf/freeswitch.xml
==============================================================================
--- freeswitch/trunk/conf/freeswitch.xml	(original)
+++ freeswitch/trunk/conf/freeswitch.xml	Mon Sep 29 01:23:28 2008
@@ -1,3 +1,21 @@
+<!--
+    NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
+    
+    This is the FreeSWITCH default config.  Everything you see before you now traverses 
+    down into all the directories including files which include more files.  The default
+    config comes out of the box already working in most situations as a PBX.  This will
+    allow you to get started testing and playing with various things in FreeSWITCH.
+    
+    Before you start to modify this default please visit this wiki page:
+    
+    http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Some_stuff_to_try_out.21
+    
+    If all else fails you can read our FAQ located at:
+    
+    http://wiki.freeswitch.org/wiki/FreeSwitch_FAQ
+    
+    NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
+-->
 <?xml version="1.0"?>
 <document type="freeswitch/xml">
   <!--#comment 

Modified: freeswitch/trunk/conf/vars.xml
==============================================================================
--- freeswitch/trunk/conf/vars.xml	(original)
+++ freeswitch/trunk/conf/vars.xml	Mon Sep 29 01:23:28 2008
@@ -2,6 +2,13 @@
        These are introduced when configuration strings must be consistent across modules. 
    -->
   <X-PRE-PROCESS cmd="set" data="sound_prefix=$${base_dir}/sounds/en/us/callie"/>
+  <!--
+      This setting is what sets the default domain FreeSWITCH will use if all else fails.
+      
+      FreeSWICH will default to $${local_ip_v4} unless changed.  Changing this setting does 
+      affect the sip authentication.  Please review conf/directory/default.xml for more
+      information on this topic.
+  -->
   <X-PRE-PROCESS cmd="set" data="domain=$${local_ip_v4}"/>
   <X-PRE-PROCESS cmd="set" data="hold_music=local_stream://moh"/>
   <!-- xmpp_client_profile and xmpp_server_profile



More information about the Freeswitch-svn mailing list