Hi Gurus,<br><br>Could anyone advise how to realize have FS to play a voice prompt e.g. 'the extension you dialed is busy now, please dial the other exsention' to replacing busy tone when the called extension is in a call...<br>
<br>the details is below,<br><br>When calling to FS, the FS will play IVR "welcome to call us, please input the extension number, for operator please press 0",<br>then the caller input the extension number, in case the extension is in a call, the caller will hear busy tone...<br>
it needs the system play "the extension you dailed is busy, please dial the other extension", currently my dial plan as following, could anyone advise how to change based on below dial plan or any other new dail plan can realize it...<br>
<br>Thanks a lot!<br><br> <extension name="Local_Extension"><br> <condition field="destination_number" expression="^(1\d{3})$"><br> <action application="set" data="dialed_extension=$1"/><br>
<action application="export" data="dialed_extension=$1"/><br> <action application="set" data="ringback=${us-ring}"/><br> <action application="set" data="transfer_ringback=$${hold_music}"/><br>
<action application="set" data="call_timeout=30"/><br> <action application="set" data="hangup_after_bridge=true"/><br> <br> <!-- to enable voice mail, set continue_on_fail=true below --><br>
<action application="set" data="continue_on_fail=false"/><br> <action application="hash" data="insert/${domain_name}-last_dial_ext/${dialed_extension}/${uuid}"/><br>
<action application="hash" data="insert/${domain_name}-last_dial_ext/global/${uuid}"/><br> <action application="bridge" data="sofia/internal/${dialed_extension}%${domain_name}"/><br>
<action application="answer"/><br> <br> <action application="sleep" data="1000"/><br> <action application="bridge" data="loopback/app=voicemail:default ${domain_name} ${dialed_extension}"/><br>
</condition><br> </extension><br> <br> <br> <extension name="IVR" ><br> <condition field="destination_number" expression="^888$"><br> <action application="answer"/><br>
<action application="sleep" data="2000"/><br> <action application="ivr" data="IVR"/><br> </condition><br> </extension><br> <br>
<!-- --><br> <menu name="IVR"<br> greet-long="C:/VSWITCH/recordings/greeting_tts.wav"<br> greet-short="C:/VSWITCH/recordings/greeting_tts.wav"<br> invalid-sound="ivr/ivr-that_was_an_invalid_entry.wav"<br>
exit-sound="voicemail/vm-goodbye.wav"<br> confirm-macro=""<br> confirm-key=""<br> tts-engine="flite"<br> tts-voice="rms"<br> confirm-attempts="3"<br>
timeout="10000"<br> inter-digit-timeout="2000"<br> max-failures="3"<br> max-timeouts="3"<br> digit-len="5"><br> <entry action="menu-exec-app" digits="/(^\*\d{3,5}$|^\d{3,5}$)/" param="transfer $1 XML default"/><br>
</menu><br> <br>Regards,<br>Charles<br>