<div dir="ltr">Hmm, looking at your log and mine from the past, you appear to be correct. It looks like break=never means to ignore the condition. So then.. I&#39;m left with the original question - what&#39;s the point?<div>

And another - how can you do groups of conditions, like I intended to show in the example? I tried setting it to break on-false, or break on-true, but I can never get to the second condition set. Am I supposed to create it as separate extensions?<br>

<div><br></div><div><div class="gmail_quote">On Mon, Mar 21, 2011 at 12:44 PM, Dmitry Bely <span dir="ltr">&lt;<a href="mailto:dmitry.bely@gmail.com">dmitry.bely@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On Mon, Mar 21, 2011 at 1:01 PM, Avi Marcus &lt;<a href="mailto:avi@avimarcus.net">avi@avimarcus.net</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; &gt; You need ALL the conditions to match for freeswitch to do the action,<br>
&gt;&gt; &gt; and you can&#39;t<br>
&gt;&gt; &gt; change that!<br>
&gt;&gt;<br>
&gt;&gt; I don&#39;t think so. If some condition evaluates to true, its nested<br>
&gt;&gt; actions are always executed no matter what preceded it. But of course<br>
&gt;&gt; the condition should be evaluated first, that&#39;s where various break<br>
&gt;&gt; values come into play.<br>
&gt;<br>
&gt; No way - the dialplan is always run on a &quot;match all conditions&quot; to do the<br>
&gt; actions! How else would multiple conditions EVER work?<br>
<br>
</div>Completely wrong. And I don&#39;t see relevant logs in your message. Here<br>
is mine. A dialplan fragment:<br>
<br>
    &lt;extension name=&quot;condition-test&quot;&gt;<br>
<div class="im">        &lt;condition wday=&quot;6&quot; break=&quot;never&quot;/&gt;<br>
</div>        &lt;condition hour=&quot;9-18&quot; break=&quot;on-true&quot;&gt;<br>
            &lt;action application=&quot;info&quot;/&gt;<br>
        &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
<br>
log:<br>
<br>
Dialplan: sofia/internal/<a href="mailto:1000@192.168.121.66">1000@192.168.121.66</a> parsing<br>
[default-&gt;condition-test] continue=false<br>
Dialplan: sofia/internal/<a href="mailto:1000@192.168.121.66">1000@192.168.121.66</a> Date/Time Match (FAIL)<br>
[condition-test] break=never<br>
Dialplan: sofia/internal/<a href="mailto:1000@192.168.121.66">1000@192.168.121.66</a> Date/Time Match (PASS)<br>
[condition-test] break=on-true<br>
Dialplan: sofia/internal/<a href="mailto:1000@192.168.121.66">1000@192.168.121.66</a> Action info()<br>
<br>
Guess what? The first condition fails but the action is still<br>
scheduled for execution (and indeed executed later)<br>
<div><div></div><div class="h5"><br>
- Dmitry Bely<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>
</div></div></blockquote></div><br></div></div></div>