<div dir="ltr"><meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; line-height: 19px; "><pre style="padding-top: 1em; padding-right: 1em; padding-bottom: 1em; padding-left: 1em; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(47, 111, 171); border-right-color: rgb(47, 111, 171); border-bottom-color: rgb(47, 111, 171); border-left-color: rgb(47, 111, 171); color: black; background-color: rgb(249, 249, 249); line-height: 1.1em; ">

&lt;extension name=&quot;YLE&quot;&gt;
        &lt;condition field=&quot;destination_number&quot; expression=&quot;^\*1105$&quot; break=&quot;on-false&quot;/&gt; &lt;--if this is false, FreeSWITCH skips to the next extension.
        &lt;condition wday=&quot;6&quot; break=&quot;never&quot;/&gt; &lt;--The default &quot;on-false&quot; would make FreeSWITCH move to the next extension, rather than evaluating the next condition set.
        &lt;condition hour=&quot;8-12&quot; break=&quot;on-true&quot;&gt; &lt;--Don&#39;t evaluate the next condition set if this is true.
                &lt;action application=&quot;transfer&quot; data=&quot;1105 XML default&quot;/&gt;
        &lt;/condition&gt;
<br></pre><pre style="padding-top: 1em; padding-right: 1em; padding-bottom: 1em; padding-left: 1em; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(47, 111, 171); border-right-color: rgb(47, 111, 171); border-bottom-color: rgb(47, 111, 171); border-left-color: rgb(47, 111, 171); color: black; background-color: rgb(249, 249, 249); line-height: 1.1em; ">

 
        &lt;condition wday=&quot;1-5&quot; break=&quot;never&quot;/&gt;
        &lt;condition hour=&quot;8-21&quot; break=&quot;on-true&quot;&gt;
                &lt;action application=&quot;transfer&quot; data=&quot;1105 XML default&quot;/&gt;
        &lt;/condition&gt;
<br></pre><pre style="padding-top: 1em; padding-right: 1em; padding-bottom: 1em; padding-left: 1em; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(47, 111, 171); border-right-color: rgb(47, 111, 171); border-bottom-color: rgb(47, 111, 171); border-left-color: rgb(47, 111, 171); color: black; background-color: rgb(249, 249, 249); line-height: 1.1em; ">

 
        &lt;condition&gt; &lt;-- this is a catch all. If they didn&#39;t dial *1105, they aren&#39;t here anymore.
                &lt;action application=&quot;voicemail&quot; data=&quot;default ${domain} 1105&quot;/&gt;
        &lt;/condition&gt;

   &lt;/extension&gt;</pre></span><br><div class="gmail_quote">On Mon, Mar 21, 2011 at 11:40 AM, 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 11:18 AM, Avi Marcus &lt;<a href="mailto:avi@avimarcus.net">avi@avimarcus.net</a>&gt; wrote:<br>
&gt; NOTE: break &quot;on-true, on-false, never&quot; don&#39;t change the *condition*, merely<br>
&gt; the *hunting*.<br>
<br>
</div>If wday=1 and  hour=9, will transfer to 1105 be executed in your<br>
example? If you think it won&#39;t, why?<br></blockquote><div>It will go to 1105 - from the second condition-group. But the first condition-group fails. I&#39;m pretty sure I&#39;ve seen it in the logs work as I&#39;m describing..</div>

<div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im"><br>
&gt; You need ALL the conditions to match for freeswitch to do the action, and you can&#39;t<br>
&gt; change that!<br>
<br>
</div>I don&#39;t think so. If some condition evaluates to true, its nested<br>
actions are always executed no matter what preceded it. But of course<br>
the condition should be evaluated first, that&#39;s where various break<br>
values come into play.<br></blockquote><div>No way - the dialplan is always run on a &quot;match all conditions&quot; to do the actions! How else would multiple conditions EVER work?</div><div><br></div><div>This is a slight edge-case though - the on-true, on-fail, never.. they only matter when you want MULTIPLE condition-groups within ONE extension. If you specify your settings as multiple serial extensions, then this stuff doesn&#39;t really matter...</div>

<div><br></div><div>-Avi</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div></div><div class="h5"><br>
&gt; The break is how to handle failure - &quot;Does 1 failure to match<br>
&gt; a condition mean should move on to the next condition extension (on-false)<br>
&gt; or keep evaluating this extension? (never)&quot;<br>
&gt; -Avi<br>
&gt;<br>
&gt; On Mon, Mar 21, 2011 at 10:13 AM, Avi Marcus &lt;<a href="mailto:avi@avimarcus.net">avi@avimarcus.net</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; We have two items going on - extensions, and condition-groups within the<br>
&gt;&gt; extension.<br>
&gt;&gt; For wday=1, if it was set to on-false - the default - it would end<br>
&gt;&gt; evaluating this extension and move on to the next.<br>
&gt;&gt; However, since it says &quot;break=never&quot; it moves to evaluate the *next*<br>
&gt;&gt; *condition-group* rather than executing or skipping the extension entirely.<br>
&gt;&gt; -Avi<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Mar 21, 2011 at 8:59 AM, Dmitry Bely &lt;<a href="mailto:dmitry.bely@gmail.com">dmitry.bely@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Sun, Mar 20, 2011 at 10:45 PM, Avi Marcus &lt;<a href="mailto:avi@avimarcus.net">avi@avimarcus.net</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt; No, I&#39;m pretty sure that example works as intended.. I created it<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Really? Correct me if I&#39;m wrong but for wday=1 and hour=9 an action in<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;        &lt;condition wday=&quot;6&quot; break=&quot;never&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;condition hour=&quot;8-12&quot; break=&quot;on-true&quot;&gt;<br>
&gt;&gt;&gt;                &lt;action application=&quot;transfer&quot; data=&quot;1105 XML default&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;/condition&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; will be executed and further processing will be stopped. Actually the<br>
&gt;&gt;&gt; first condition is a sort of (misleading) comment here.<br>
<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>