<br><br><div class="gmail_quote">On Wed, Apr 22, 2009 at 5:20 PM, Chris Fowler <span dir="ltr">&lt;chris@fowler.cc&gt;</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;">
Brian, Michael,<br>
<br>
Thanks for the help - I had read that but not fully comprehended it until you spun it the way you did.<br>
<br>
Here&#39;s what I ended up with - if there&#39;s optimization that could be done let me know.  Happy to update the wiki if this is a common request.</blockquote><div><br>That looks pretty good. It is clean and readable and most importantly it sounds like it does what you need! :)<br>
-MC<br> </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
    &lt;!-- Provide an internal ext # for Sales --&gt;<br>
    &lt;extension name=&quot;RS-Sales-x2002&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^2002$&quot;&gt;<br>
        &lt;action application=&quot;transfer&quot; data=&quot;RS-Sales&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
<br>
    &lt;!-- Setup variables prior to transfering to call handler for sales --&gt;<br>
    &lt;extension name=&quot;RS-Sales&quot; continue=&quot;true&quot;&gt;<br>
      &lt;!-- man strftime - M-F, 9AM to 5PM --&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^RS-Sales$&quot;/&gt;<br>
      &lt;condition field=&quot;${strftime(%w)}&quot; expression=&quot;^([1-5])$&quot;/&gt;<br>
      &lt;condition field=&quot;${strftime(%H%M)}&quot; expression=&quot;^((09|1[0-6])[0-5][0-9]|1700)$&quot;&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;RS-Sales_open=true&quot;/&gt;<br>
        &lt;action application=&quot;transfer&quot; data=&quot;xfer-to-sales&quot;/&gt;<br>
        &lt;anti-action application=&quot;set&quot; data=&quot;RS-Sales_open=false&quot;/&gt;<br>
        &lt;anti-action application=&quot;transfer&quot; data=&quot;xfer-to-sales&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
<br>
    &lt;!-- Handle Sales Call --&gt;<br>
    &lt;!-- If Sales is open then route to extension first then vMail; else direct to vMail --&gt;<br>
    &lt;extension name=&quot;xfer-to-sales&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^xfer-to-sales$&quot;/&gt;<br>
      &lt;condition field=&quot;${RS-Sales_open}&quot; expression=&quot;^true$&quot;&gt;<br>
        &lt;action application=&quot;bridge&quot; data=&quot;user/1001@${domain_name}&quot;/&gt;<br>
        &lt;action application=&quot;answer&quot;/&gt;<br>
        &lt;action application=&quot;sleep&quot; data=&quot;2000&quot;/&gt;<br>
        &lt;action application=&quot;voicemail&quot; data=&quot;default ${domain_name} 2001&quot;/&gt;<br>
        &lt;anti-action application=&quot;voicemail&quot; data=&quot;default ${domain_name} 2001&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
<br>
Thx, Chris.<br>
<br>
</blockquote><br></div><br>