diff options
Diffstat (limited to 'misc/freeswitch/conf')
-rw-r--r-- | misc/freeswitch/conf/freeswitch.xml | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/misc/freeswitch/conf/freeswitch.xml b/misc/freeswitch/conf/freeswitch.xml index f72651f..97e027d 100644 --- a/misc/freeswitch/conf/freeswitch.xml +++ b/misc/freeswitch/conf/freeswitch.xml @@ -272,8 +272,10 @@ </input> <input pattern="^name:(.+)$"> <match> + <action function="play-file" data="ivr/ivr-thank_you_for_calling.wav"/> <action function="play-file" data="$1"/> <action function="play-file" data="voicemail/vm-not_available.wav"/> + <action function="play-file" data="ivr/ivr-please_state_your_name_and_reason_for_calling.wav"/> </match> </input> <input pattern="^greeting:(.+)$"> @@ -470,7 +472,7 @@ </match> </input> </macro> - <macro name="conference_welcome"> + <macro name="conference_welcome"> <input pattern="^(.*)$"> <match> <action function="play-file" data="conference/conf-welcome.wav"/> @@ -515,6 +517,13 @@ </match> </input> </macro> + <macro name="conference_alone"> + <input pattern="^(.*)$"> + <match> + <action function="play-file" data="conference/conf-alone.wav"/> + </match> + </input> + </macro> </macros> </phrases> </language> @@ -789,8 +798,10 @@ </input> <input pattern="^name:(.+)$"> <match> + <action function="play-file" data="ivr/ivr-thank_you_for_calling.wav"/> <action function="play-file" data="$1"/> <action function="play-file" data="voicemail/vm-not_available.wav"/> + <action function="play-file" data="ivr/ivr-please_state_your_name_and_reason_for_calling.wav"/> </match> </input> <input pattern="^greeting:(.+)$"> @@ -914,7 +925,6 @@ <match> <action function="play-file" data="ivr/ivr-you_are_number.wav"/> <action function="say" data="$1" method="pronounced" type="number"/> - <action function="play-file" data="ivr/ivr-in_line.wav"/> </match> </input> </macro> @@ -923,7 +933,6 @@ <match> <action function="play-file" data="ivr/ivr-you_are_number.wav"/> <action function="say" data="1" method="pronounced" type="number"/> - <action function="play-file" data="ivr/ivr-in_line.wav"/> <action function="break"/> </match> </input> @@ -931,7 +940,6 @@ <match> <action function="play-file" data="ivr/ivr-you_are_number.wav"/> <action function="say" data="$1" method="pronounced" type="number"/> - <action function="play-file" data="ivr/ivr-in_line.wav"/> <action function="play-file" data="ivr/ivr-thank_you_for_holding.wav"/> </match> </input> @@ -941,7 +949,6 @@ <match> <action function="play-file" data="ivr/ivr-you_are_number.wav"/> <action function="say" data="1" method="pronounced" type="number"/> - <action function="play-file" data="ivr/ivr-in_line.wav"/> <action function="break"/> </match> </input> @@ -949,7 +956,6 @@ <match> <action function="play-file" data="ivr/ivr-you_are_number.wav"/> <action function="say" data="$1" method="pronounced" type="number"/> - <action function="play-file" data="ivr/ivr-in_line.wav"/> <action function="play-file" data="ivr/ivr-thank_you_for_holding.wav"/> </match> </input> @@ -1032,6 +1038,13 @@ </match> </input> </macro> + <macro name="conference_alone"> + <input pattern="^(.*)$"> + <match> + <action function="play-file" data="conference/conf-alone.wav"/> + </match> + </input> + </macro> </macros> </phrases> </language> @@ -1053,13 +1066,6 @@ <param name="loglevel" value="info"/> </settings> </configuration> - <configuration name="event_socket.conf" description="Socket Client"> - <settings> - <param name="nat-map" value="false"/> - <param name="listen-ip" value="127.0.0.1"/> - <param name="listen-port" value="8021"/> - </settings> - </configuration> <configuration name="local_stream.conf" description="stream files from local dir"> <directory name="default" path="/opt/freeswitch/sounds/music/8000"> <param name="rate" value="8000"/> |