AMD

Definition

Only use this tag for outbound campaigns. This tag enables the use of answering machine detection. The system will determine whether the answering line is live or an answering machine and react accordingly.

Value

Tag contains a <live> tag and a <machine> tag. These tags tell the system what to do in either instance. An <amd> tag must contain both a <live> tag and a <machine> tag. The contents of these tags may be any other tag.

Attributes

Attribute Required Values Description
name N any text A unique name for the tag

Examples

The following example presents a user with options if the user answers live. However, if we reach an answering machine, the system will play a message after the beep and hang up.

<dialplan name="Root">
    <amd>
        <live>
        <menu name="main_menu">
            <play type="callfireid">332122</play>
            <keypress pressed="1">
                <transfer callerid="5551231234" name="sales">
                    5552312312
                </transfer>
            </keypress>
            <keypress pressed="3">
                <transfer callerid="5551231234" name="support">
                    5552312312
                </transfer>
            </keypress>
            <keypress pressed="#">
                <play type="callfireid">332192</play>
            </keypress></menu>
        </live>
        <machine>
        <play type="callfireid">332123</play>
        </machine>
    </amd>
</dialplan>