[Freeswitch-users] Routing calls based on 'Referred-By'

Matt Darnell mattdarnell at gmail.com
Thu Jul 17 01:59:07 PDT 2008


> I would like the dial plan to route based on the number in the
> Refered-By or Diversion field.

    <extension name="Mailbox_4473451">
      <condition "${sip_referred_by_user}" expression="4473451">
        <action application="info"/>
        <action application="export" data="sip_h_Diversion=3451"/>
        <action application="bridge"
data="{absolute_codec_string=PCMA}sofia/gateway/gw.akamaitel.com/3451"/>
      </condition>
    </extension>

    <extension name="Mailbox_4473452">
      <condition "${sip_referred_by_user}" expression="4473452">
        <action application="info"/>
        <action application="export" data="sip_h_Diversion=3452"/>
        <action application="bridge"
data="{absolute_codec_string=PCMA}sofia/gateway/gw.akamaitel.com/3452"/>
      </condition>
    </extension>

For some reason, all calls go to the first extension.  When I look at
the out put from info, the sip_referred_by_user is 4473452 but it
still routes to the first extension.
variable_sip_referred_by_user: [4473452]

I have even changed the condition statement of the first extensin to :
<condition "${sip_referred_BOGUS_by_user}" expression="4473451">
and it still executes that extension.

Please let me know if you can see the issue.

-Matt




More information about the FreeSWITCH-users mailing list