mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-05 12:29:33 +00:00
clean up switch.conf and add all the missing options needs more docs
This commit is contained in:
parent
1015883e1b
commit
65fc2f8ac1
@ -16,32 +16,32 @@
|
|||||||
</cli-keybindings>
|
</cli-keybindings>
|
||||||
|
|
||||||
<default-ptimes>
|
<default-ptimes>
|
||||||
<!-- set this to override the 20ms assumption of various codecs in the sdp with no ptime defined -->
|
<!-- Set this to override the 20ms assumption of various codecs in the sdp with no ptime defined -->
|
||||||
<!--<codec name="G729" ptime="40"/>-->
|
<!-- <codec name="G729" ptime="40"/> -->
|
||||||
</default-ptimes>
|
</default-ptimes>
|
||||||
|
|
||||||
<settings>
|
<settings>
|
||||||
<!--Colorize the Console -->
|
<!-- Colorize the Console -->
|
||||||
<param name="colorize-console" value="true"/>
|
<param name="colorize-console" value="true"/>
|
||||||
|
|
||||||
<!-- Run the timer at 20ms by default and drop down as needed unless you set 1m-timer=true which was previous default -->
|
<!-- Run the timer at 20ms by default and drop down as needed unless you set 1m-timer=true which was previous default -->
|
||||||
<!-- <param name="1ms-timer" value="true"/> -->
|
<!-- <param name="1ms-timer" value="true"/> -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Set the Switch Name for HA environments.
|
Set the Switch Name for HA environments.
|
||||||
When setting the switch name, it will override the system hostname for all DB and CURL requests
|
When setting the switch name, it will override the system hostname for all DB and CURL requests
|
||||||
allowing cluster environments such as RHCS to have identical FreeSWITCH configurations but run
|
allowing cluster environments such as RHCS to have identical FreeSWITCH configurations but run
|
||||||
as different hostnames.
|
as different hostnames.
|
||||||
-->
|
-->
|
||||||
<!-- <param name="switchname" value="freeswitch"/>-->
|
<!-- <param name="switchname" value="freeswitch"/> -->
|
||||||
|
|
||||||
<!-- maximum number of simo db handles open -->
|
<!-- Maximum number of simultaneous DB handles open -->
|
||||||
<param name="max-db-handles" value="50"/>
|
<param name="max-db-handles" value="50"/>
|
||||||
<!-- maximum number of seconds to wait for a new db handle before failing -->
|
<!-- Maximum number of seconds to wait for a new DB handle before failing -->
|
||||||
<param name="db-handle-timeout" value="10"/>
|
<param name="db-handle-timeout" value="10"/>
|
||||||
|
|
||||||
<!-- minimum idle CPU before refusing calls -->
|
<!-- Minimum idle CPU before refusing calls -->
|
||||||
<!--<param name="min-idle-cpu" value="25"/>-->
|
<!-- <param name="min-idle-cpu" value="25"/> -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Max number of sessions to allow at any given time.
|
Max number of sessions to allow at any given time.
|
||||||
@ -55,68 +55,112 @@
|
|||||||
<param name="sessions-per-second" value="30"/>
|
<param name="sessions-per-second" value="30"/>
|
||||||
<!-- Default Global Log Level - value is one of debug,info,notice,warning,err,crit,alert -->
|
<!-- Default Global Log Level - value is one of debug,info,notice,warning,err,crit,alert -->
|
||||||
<param name="loglevel" value="debug"/>
|
<param name="loglevel" value="debug"/>
|
||||||
<!-- The min-dtmf-duration specifies the minimum DTMF duration to use on
|
|
||||||
outgoing events. Events shorter than this will be increased in duration
|
<!-- Set the core DEBUG level (0-10) -->
|
||||||
to match min_dtmf_duration. You cannot configure a dtmf duration on a
|
<!-- <param name="debug-level" value="10"/> -->
|
||||||
profile that is less than this setting. You may increase this value,
|
|
||||||
but cannot set it lower than 400. This value cannot exceed
|
<!-- SQL Buffer length within rage of 32k to 10m -->
|
||||||
max-dtmf-duration. -->
|
<!-- <param name="sql-buffer-len" value="1m"/> -->
|
||||||
<!--<param name="min-dtmf-duration" value="400"/>-->
|
<!-- Maximum SQL Buffer length must be greater than sql-buffer-len -->
|
||||||
<!-- The max-dtmf-duration caps the playout of a DTMF event at the specified
|
<!-- <param name="max-sql-buffer-len" value="2m"/> -->
|
||||||
duration. Events exceeding this duration will be truncated to this
|
|
||||||
duration. You cannot configure a duration on a profile that exceeds
|
<!--
|
||||||
this setting. This setting can be lowered, but cannot exceed 192000.
|
The min-dtmf-duration specifies the minimum DTMF duration to use on
|
||||||
This setting cannot be set lower than min_dtmf_duration. -->
|
outgoing events. Events shorter than this will be increased in duration
|
||||||
<!--<param name="max-dtmf-duration" value="192000"/>-->
|
to match min_dtmf_duration. You cannot configure a dtmf duration on a
|
||||||
<!-- The default_dtmf_duration specifies the DTMF duration to use on
|
profile that is less than this setting. You may increase this value,
|
||||||
originated DTMF events or on events that are received without a
|
but cannot set it lower than 400. This value cannot exceed
|
||||||
duration specified. This value can be increased or lowered. This
|
max-dtmf-duration. -->
|
||||||
value is lower-bounded by min_dtmf_duration and upper-bounded by
|
<!-- <param name="min-dtmf-duration" value="400"/> -->
|
||||||
max-dtmf-duration\. -->
|
|
||||||
<!--<param name="default-dtmf-duration" value="2000"/>-->
|
<!--
|
||||||
|
The max-dtmf-duration caps the playout of a DTMF event at the specified
|
||||||
|
duration. Events exceeding this duration will be truncated to this
|
||||||
|
duration. You cannot configure a duration on a profile that exceeds
|
||||||
|
this setting. This setting can be lowered, but cannot exceed 192000.
|
||||||
|
This setting cannot be set lower than min_dtmf_duration. -->
|
||||||
|
<!-- <param name="max-dtmf-duration" value="192000"/> -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The default_dtmf_duration specifies the DTMF duration to use on
|
||||||
|
originated DTMF events or on events that are received without a
|
||||||
|
duration specified. This value can be increased or lowered. This
|
||||||
|
value is lower-bounded by min_dtmf_duration and upper-bounded by
|
||||||
|
max-dtmf-duration\. -->
|
||||||
|
<!-- <param name="default-dtmf-duration" value="2000"/> -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
If you want to send out voicemail notifications via Windows you'll need to change the mailer-app
|
If you want to send out voicemail notifications via Windows you'll need to change the mailer-app
|
||||||
variable to the setting below:
|
variable to the setting below:
|
||||||
|
|
||||||
<param name="mailer-app" value="msmtp"/>
|
<param name="mailer-app" value="msmtp"/>
|
||||||
|
|
||||||
Do not change mailer-app-args.
|
Do not change mailer-app-args.
|
||||||
You will also need to download a sendmail clone for Windows (msmtp). This version works without issue:
|
You will also need to download a sendmail clone for Windows (msmtp). This version works without issue:
|
||||||
http://msmtp.sourceforge.net/index.html. Download and copy the .exe to %winddir%\system32.
|
http://msmtp.sourceforge.net/index.html. Download and copy the .exe to %winddir%\system32.
|
||||||
You'll need to create a small config file for smtp credentials (host name, authentication, tls, etc.) in
|
You'll need to create a small config file for smtp credentials (host name, authentication, tls, etc.) in
|
||||||
%USERPROFILE%\Application Data\ called "msmtprc.txt". Below is a sample copy of this file:
|
%USERPROFILE%\Application Data\ called "msmtprc.txt". Below is a sample copy of this file:
|
||||||
|
|
||||||
###################################
|
###################################
|
||||||
# The SMTP server of the provider.
|
# The SMTP server of the provider.
|
||||||
account provider
|
account provider
|
||||||
host smtp.myisp.com
|
host smtp.myisp.com
|
||||||
from john@myisp.com
|
from john@myisp.com
|
||||||
auth login
|
auth login
|
||||||
user johndoe
|
user johndoe
|
||||||
password mypassword
|
password mypassword
|
||||||
|
|
||||||
# Set a default account
|
# Set a default account
|
||||||
account default : provider
|
account default : provider
|
||||||
###################################
|
###################################
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<param name="mailer-app" value="sendmail"/>
|
<param name="mailer-app" value="sendmail"/>
|
||||||
<param name="mailer-app-args" value="-t"/>
|
<param name="mailer-app-args" value="-t"/>
|
||||||
<param name="dump-cores" value="yes"/>
|
<param name="dump-cores" value="yes"/>
|
||||||
<!-- enable verbose-channel-events to dump every detail about a channel on every event -->
|
|
||||||
<!--<param name="verbose-channel-events" value="no"/>-->
|
<!-- Enable verbose channel events to include every detail about a channel on every event -->
|
||||||
<!--RTP port range -->
|
<!-- <param name="verbose-channel-events" value="no"/> -->
|
||||||
<!--<param name="rtp-start-port" value="16384"/>-->
|
|
||||||
<!--<param name="rtp-end-port" value="32768"/>-->
|
<!-- Enable clock nanosleep -->
|
||||||
|
<!-- <param name="enable-clock-nanosleep" value="true"/> -->
|
||||||
|
|
||||||
|
<!-- Enable monotonic timing -->
|
||||||
|
<!-- <param name="enable-monotonic-timing" value="true"/> -->
|
||||||
|
|
||||||
|
<!-- NEEDS DOCUMENTATION -->
|
||||||
|
<!-- <param name="enable-softtimer-timerfd" value="true"/> -->
|
||||||
|
<!-- <param name="enable-cond-yield" value="true"/> -->
|
||||||
|
<!-- <param name="enable-timer-matrix" value="true"/> -->
|
||||||
|
<!-- <param name="threaded-system-exec" value="true"/> -->
|
||||||
|
<!-- <param name="tipping-point" value="0"/> -->
|
||||||
|
<!-- <param name="timer-affinity" value="disabled"/> -->
|
||||||
|
<!-- NEEDS DOCUMENTATION -->
|
||||||
|
|
||||||
|
<!-- RTP port range -->
|
||||||
|
<!-- <param name="rtp-start-port" value="16384"/> -->
|
||||||
|
<!-- <param name="rtp-end-port" value="32768"/> -->
|
||||||
|
|
||||||
<param name="rtp-enable-zrtp" value="true"/>
|
<param name="rtp-enable-zrtp" value="true"/>
|
||||||
|
|
||||||
<!-- <param name="core-db-dsn" value="dsn:username:password" /> -->
|
<!-- <param name="core-db-dsn" value="dsn:username:password" /> -->
|
||||||
<!-- Allow to specify the sqlite db at a different location (In this example, move it to ramdrive for better performance on most linux distro (note, you loose the data if you reboot)) -->
|
<!--
|
||||||
|
Allow to specify the sqlite db at a different location (In this example, move it to ramdrive for
|
||||||
|
better performance on most linux distro (note, you loose the data if you reboot))
|
||||||
|
-->
|
||||||
<!-- <param name="core-db-name" value="/dev/shm/core.db" /> -->
|
<!-- <param name="core-db-name" value="/dev/shm/core.db" /> -->
|
||||||
<!-- The system will create all the db schemas automatically, set this to false to avoid this behaviour-->
|
|
||||||
<!--<param name="auto-create-schemas" value="true"/>-->
|
<!-- The system will create all the db schemas automatically, set this to false to avoid this behaviour -->
|
||||||
|
<!-- <param name="auto-create-schemas" value="true"/> -->
|
||||||
|
<!-- <param name="auto-clear-sql" value="true"/> -->
|
||||||
|
<!-- <param name="enable-early-hangup" value="true"/> -->
|
||||||
|
|
||||||
<!-- <param name="core-dbtype" value="MSSQL"/> -->
|
<!-- <param name="core-dbtype" value="MSSQL"/> -->
|
||||||
|
|
||||||
<!-- Allow multiple registrations to the same account in the central registration table -->
|
<!-- Allow multiple registrations to the same account in the central registration table -->
|
||||||
<!-- <param name="multiple-registrations" value="true"/> -->
|
<!-- <param name="multiple-registrations" value="true"/> -->
|
||||||
|
|
||||||
</settings>
|
</settings>
|
||||||
|
|
||||||
</configuration>
|
</configuration>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user