[Freeswitch-users] Dialplan not matching
krice at freeswitch.org
krice at freeswitch.org
Tue Sep 21 21:03:13 UTC 2021
David,
Don’t forget variables are expanded before the dialplan processing beings.
So for example
<action application=”set” data=”somevar=foo”/>
<action application=”bridge” data=”${somevar}”/>
This will fail as ${somevar} wasn’t set yet to be expanded. You can kinda shortcut this with setting inline=”true” where the vars are set or after all your vars are set <action application=”transfer” data=”extension_number XML context”/> to make things reset and re-expand all the vars.
Not sure if that’s whats happening here, but the lack of a complete dialplan or extension makes me wonder.
K
From: FreeSWITCH-users <freeswitch-users-bounces at lists.freeswitch.org> On Behalf Of David Villasmil
Sent: Tuesday, September 21, 2021 1:51 PM
To: FreeSWITCH Users Help <freeswitch-users at lists.freeswitch.org>
Subject: [Freeswitch-users] Dialplan not matching
Hello all,
I have the following condition:
<action application="log" data="ERR UUID: ${uuid} = ${conference_name}"/>
<condition field="${cond(${uuid} == ${conference_name} ? YES : NO)}" expression="^YES$">
The log properly prints both variables:
mod_dptools.c:1879 UUID: 7d736b08-212b-4ac2-abb3-a5e738306fb5 = 7d736b08-212b-4ac2-abb3-a5e738306fb5
they're exactly the same, and still condition function fails:
Regex (FAIL) [conf_destination_recur_1] ${cond(${uuid} == ${conference_name} ? YES : NO)}(-ERR) =~ /^YES$/ break=on-false
I also tried a simple condition like
<condition field="${uuid}" expression="${conference_name}">
and still no match...
Ideas?
Thanks guys
David Villasmil
email: david.villasmil.work at gmail.com <mailto:david.villasmil.work at gmail.com>
phone: +34669448337
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20210921/fb3bb0a6/attachment.html>
More information about the FreeSWITCH-users
mailing list