<div>I am trying to use the GotoIfTime function and get a busy signal. What I am trying to accomplish is to have the system tell callers that we are closed after 5:00pm. Here is the code below.</div>
<div>&nbsp;</div>
<div>; If we&#39;re open, then go to the open context<br>; We&#39;re open from 9am to 6pm Monday through Friday<br>exten =&gt; 3200,1,GotoIfTime(09:00-17:59,mon-fri,*,*?open,3200,1)<br>;<br>; We&#39;re also late on Tuesday and Thursday<br>
exten =&gt; 3200,n,GotoIfTime(09:00-19:59,tue&amp;thru,*,*?open,3200,1)<br>;<br>; We&#39;re also open from 9am to noon on Saturday<br>exten =&gt; 3200,n,GotoIfTime(09:00-11:59,sat,*,*?open,3200,1)<br>;<br>; Otherwise, we&#39;re closed<br>
exten =&gt; 3200,n,Goto(closed,s,1)</div>
<div>&nbsp;</div>
<div>here is the cli </div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp; -- Executing [3200@default:1] GotoIfTime(&quot;SIP/1231-009da480&quot;, &quot;09:00-17:59|mon-fri|*|*?open|3200|1&quot;) in new stack<br>&nbsp;&nbsp;&nbsp; -- Goto (open,3200,1)<br>[Jun 23 16:57:46] WARNING[3267]: pbx.c:2468 __ast_pbx_run: Channel &#39;SIP/1231-009da480&#39; sent into invalid extension &#39;3200&#39; in context &#39;open&#39;, but no invalid handler<br>
</div>