Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 The start and stop key sequences can be defined in the settings.xml file located in {app}\ProgramData\Tri-Line\Echo, using the dtmfStart and dtmfStop attributes elements. The following settings.xml snippet is an example of a configuration to enable manual call obfuscation when a user enters **

Code Block
languagehtml/xml
<audio>
    <obfuscation>
        <dtmfStart>**</dtmfStart>
        <dtmfStop>##</dtmfStop>
        <dtmfTimeout>2000</dtmfTimeout>
        <stopTimeout>5000</stopTimeout> 
        <toneFile>
            <default>{app}/tones/alaw.wav</default>
            <codec id="0">{app}/tones/ulaw.wav</codec>
            <codec id="8">{app}/tones/alaw.wav</codec>
        </toneFile>
    </obfuscation>
</audio>

The dtmfTimeout attribute element was provided to prevent a situation where extra digits have been erroneously entered, and therefore making it impossible to enter the correct sequence. After the specified DTMF timeout has passed, all the digits previously entered will be cleared. This also ensures that obfuscation does not occur during normal negotiation of DTMF telephone selection menus (inbound or outbound). To set a DTMF entry timeout, specify the value (in milliseconds) using the dtmfTimeout element.

...