<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Thanks for all your help! With your last suggestion, and an addition of &nbsp;break="on-true" for the second condition,</div><div>I got the intended result, which in a sort of pseudo-code was this:</div><div><br></div><div>if destination_number = ... {</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>if caller_id_number=100<br></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>bridge to 140<br></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>else if&nbsp;caller_id_number=140</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>bridge to 100<br></div><div>}</div><div><br></div><div>Sure, a pretty stupid example, but I learned a lot with it, and I can now use this syntax in the dialplan.</div><div><br></div><div>Here is the final xml which works:</div><div><br></div><div><div>&nbsp;&nbsp;&lt;extension name="Outbound_ip24"></div><div>&nbsp;&nbsp; &nbsp;&lt;condition field="destination_number" expression="^(.+)$" &nbsp;break="on-false"/></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;condition field="caller_id_number" expression="^(100)$" &nbsp;break="on-true"></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;action application="bridge" data="sofia/$${domain}/140%imyrvold.dyndns.org"/></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;/condition></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;condition field="caller_id_number" expression="^(140)$"></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;action application="bridge" data="sofia/$${domain}/100%imyrvold.dyndns.org"/></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;/condition></div><div>&nbsp;&nbsp;&lt;/extension></div><div><br></div></div><div><br></div><div>Ivan</div><div><br><div><div>On 16. aug.. 2008, at 18:59, Ivan C Myrvold wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">OK, no nested conditions. But I am still unsure about the syntax. In the wiki page I could not find any example of "stacked" condition.<div>I tried with the below syntax, but still no success.</div><div><br></div><div><div>&nbsp;&nbsp;&lt;extension name="Outbound_ip24"></div><div>&nbsp;&nbsp; &nbsp;&lt;condition field="destination_number" expression="^(.+)$" &nbsp;break="on-false"></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;condition field="caller_id_number" expression="^(100)$"></div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>&lt;action application="bridge" data="sofia/$${domain}/140%imyrvold.dyndns.org"/></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;/condition></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;condition field="caller_id_number" expression="^(140)$"></div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>&lt;action application="bridge" data="sofia/$${domain}/100%imyrvold.dyndns.org"/></div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;/condition></div><div>&nbsp;&nbsp; &nbsp;&lt;/condition></div><div>&nbsp;&nbsp;&lt;/extension></div><div><br></div><div>Ivan</div></div><div><br><div><div>On 16. aug.. 2008, at 17:38, Anthony Minessale wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr">you cannot nest conditions.<br><br>you can only stack them with the break attr set.&nbsp; see wiki page.<br><a href="http://wiki.freeswitch.org/wiki/Dialplan_XML#Condition">http://wiki.freeswitch.org/wiki/Dialplan_XML#Condition</a><br> <br>in the expression both "caller_id_number" and "${caller_id_number}" will work if you do not nest conditions.<br>you do not say "${variable_caller_id_number}" <br><br><br><br><br><div class="gmail_quote"> On Fri, Aug 15, 2008 at 3:58 PM, Ivan C Myrvold <span dir="ltr">&lt;<a href="mailto:ivan@myrvold.org">ivan@myrvold.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> I am testing out conditions in my dialplan, but am unable to get a<br> match on caller_id_number, and I wonder why.<br> <br> I have to numbers registered from my PAP2, with User ID 100, and 200.<br> <br> If I have this in my dialplan, I thought I should get a match if I<br> call any number from any of these two users:<br> <br> &nbsp; &lt;extension name="Outbound_ip24"><br> &nbsp; &nbsp; &lt;condition field="destination_number" expression="^(.+)$"><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;condition field="caller_id_number" expression="^(100)$"><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;action application="bridge" data="sofia/$${domain}/<br> 140%<a href="http://imyrvold.dyndns.org" target="_blank">imyrvold.dyndns.org</a>"/><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/condition><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;condition field="caller_id_number" expression="^(140)$"><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;action application="bridge" data="sofia/$${domain}/<br> 100%<a href="http://imyrvold.dyndns.org" target="_blank">imyrvold.dyndns.org</a>"/><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/condition><br> &nbsp; &nbsp; &lt;/condition><br> &nbsp; &lt;/extension><br> <br> But FreeSWITCH can not find a route to either of 100 nor 140.<br> <br> If I remove the inner conditions, and dial any number, my 140<br> telephone will ring:<br> <br> &nbsp; &lt;extension name="Outbound_ip24"><br> &nbsp; &nbsp; &lt;condition field="destination_number" expression="^(.+)$"><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;action application="bridge" data="sofia/$${domain}/<br> 140%<a href="http://imyrvold.dyndns.org" target="_blank">imyrvold.dyndns.org</a>"/><br> &nbsp; &nbsp; &lt;/condition><br> &nbsp; &lt;/extension><br> <br> Why don't I get a match on caller_id_number?<br> <br> Ivan<br> <br> _______________________________________________<br> Freeswitch-users mailing list<br> <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br> </blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br> <br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br> IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br> <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br> </div> _______________________________________________<br>Freeswitch-users mailing list<br><a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></div></div>_______________________________________________<br>Freeswitch-users mailing list<br><a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></div></body></html>