<div dir="ltr"><div><div><div>I think that&#39;s a copy &amp; paste error. Shouldn&#39;t be checking against &quot;effective_caller_id_number&quot; variable. Try replacing it just with &quot;caller_id_number&quot; and see what happens.<br><br>Hint - checkout this line:<br>Dialplan: <a href="mailto:sofia/internal/1005@192.168.31.10" target="_blank">sofia/internal/1005@192.168.31.10</a> Regex (FAIL) [set my
    hold music] effective_caller_id_number() =~ /^(1000)$/ break=on-true<br><br></div>Note the empty parentheses right after &quot;effective_caller_id_number&quot; - this indicates that the variable had no value at the time of the evaluation. If the variable had had a value then you would see the value in the parens. Knowing that tidbit will help you tremendously as you learn how to debug dialplan processing issues.<br><br></div>Have fun!<br><br></div>-Michael<br><br><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Oct 7, 2014 at 8:25 AM, Tom Angle <span dir="ltr">&lt;<a href="mailto:tangle70@gmail.com" target="_blank">tangle70@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 bgcolor="#FFFFFF" text="#000000">
    I tried the below code and it failed to set the variable. I posted
    the full log in pastebin.<br>
    <br>
    Dialplan: <a href="mailto:sofia/internal/1005@192.168.31.10" target="_blank">sofia/internal/1005@192.168.31.10</a> Regex (FAIL) [set my
    hold music] effective_caller_id_number() =~ /^(1000)$/ break=on-true<br>
    Dialplan: <a href="mailto:sofia/internal/1005@192.168.31.10" target="_blank">sofia/internal/1005@192.168.31.10</a> Regex (FAIL) [set my
    hold music] effective_caller_id_number() =~ /^(1005)$/ break=on-true<br>
    <br>
    I am not sure why setting this variable failed. I set console
    loglevel DEBUG. Is there some other way to get more info on why it
    failed? Thanks<br>
    <br>
    Tom<br>
    <br>
    <div>On 10/3/2014 5:27 PM, Michael Collins
      wrote:<br>
    </div>
    <blockquote type="cite">
      <div dir="ltr">
        <div>
          <div>
            <div>
              <div>In the long term I would create some sort of lookup,
                like using a Lua script and database. However, in the
                short term you could do something very simple, like
                create a utility extension whose sole job it is to set
                the my_hold_music variable. Then you can play the hold
                music in the extension for 4000. Here&#39;s a sample:<br>
                <br>
              </div>
              <font size="1"><span style="font-family:courier new,monospace">&lt;extension name=&quot;set my hold music&quot;
                  continue=&quot;true&quot;&gt;<br>
                </span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">  &lt;condition break=&quot;never&quot;&gt; <br>
                      &lt;!-- default to standard hold music --&gt;<br>
                      &lt;action application=&quot;set&quot;
                  data=&quot;my_hold_music=${hold_music}&quot;/&gt;</span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">  &lt;/condition&gt;<br>
                </span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">  &lt;condition
                  field=&quot;effective_caller_id_number&quot;
                  expression=&quot;^(1000)$&quot; break=&quot;on-true&quot;&gt;<br>
                </span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">    &lt;action application=&quot;set&quot;
                  data=&quot;my_hold_music=/path/to/file1.wav&quot;/&gt;<br>
                </span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">  &lt;/condition&gt;<br>
                </span></font>
              <div><font size="1"><span style="font-family:courier new,monospace">  &lt;condition
                    field=&quot;effective_caller_id_number&quot;
                    expression=&quot;^(1001)$&quot; break=&quot;on-true&quot;&gt;<br>
                  </span></font></div>
              <div><font size="1"><span style="font-family:courier new,monospace">    &lt;action application=&quot;set&quot;
                    data=&quot;my_hold_music=/path/to/file2.wav&quot;/&gt;<br>
                  </span></font></div>
              <font size="1"><span style="font-family:courier new,monospace">  &lt;/condition&gt;<br>
                </span></font></div>
            <div><font size="1"><span style="font-family:courier new,monospace">  &lt;!-- add a condition for each
                  caller id value... --&gt;<br>
                </span></font></div>
            <font size="1"><span style="font-family:courier new,monospace">&lt;/extension&gt;<br>
                <br>
              </span></font></div>
          <font size="1"><span style="font-family:courier new,monospace">&lt;extension
              name=&quot;x4000&quot;&gt;<br>
            </span></font></div>
        <div><font size="1"><span style="font-family:courier new,monospace">  &lt;condition field=&quot;destination_number&quot;
              expression=&quot;^(4000)$&quot;&gt;<br>
            </span></font></div>
        <div><font size="1"><span style="font-family:courier new,monospace">    &lt;action application=&quot;answer&quot;/&gt;<br>
            </span></font></div>
        <div><font size="1"><span style="font-family:courier new,monospace">    &lt;action application=&quot;sleep&quot;
              data=&quot;1000&quot;/&gt;<br>
            </span></font></div>
        <div><font size="1"><span style="font-family:courier new,monospace">    &lt;action application=&quot;playback&quot;
              data=&quot;${my_hold_music}&quot;/&gt;<br>
            </span></font></div>
        <div><font size="1"><span style="font-family:courier new,monospace">  &lt;/condition&gt;<br>
            </span></font></div>
        <font size="1"><span style="font-family:courier new,monospace">&lt;/extension&gt;<br>
          </span></font>
        <div>
          <div>
            <div><font size="1"><span style="font-family:courier new,monospace"><br>
                </span></font></div>
            <div>Play around with that and see what happens. Don&#39;t
              forget about the <a href="https://wiki.freeswitch.org/wiki/Reporting_Bugs#Standard_Disclaimer" target="_blank">standard
                disclaimer</a>. :)<br>
            </div>
            <div>-MC<br>
            </div>
          </div>
        </div>
      </div>
      <div class="gmail_extra"><br>
        <div class="gmail_quote">On Fri, Oct 3, 2014 at 1:40 PM, Tom
          Angle <span dir="ltr">&lt;<a href="mailto:tangle70@gmail.com" target="_blank">tangle70@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 bgcolor="#FFFFFF" text="#000000"> In plain english. I
              want an incoming SIP call to user 4000 to go directly to
              hold and play a wav file. Also I want to assign different
              wav file to different incoming numbers. This was a
              customer can choose what on hold music their clients will
              hear.  <br>
              <br>
              I posted the cli output in pastebin under Tom Angle.
              Thanks<br>
              <br>
              Tom<br>
              <br>
              <div>On 10/3/2014 3:17 PM, Michael Collins wrote:<br>
              </div>
              <blockquote type="cite">
                <div dir="ltr">
                  <div>
                    <div>
                      <div>
                        <div>
                          <div>Welcome to FreeSWITCH!<br>
                            <br>
                          </div>
                          The folks around here will be happy to help.
                          In this case I believe they/we just need some
                          additional information. I recommend that you
                          get a console debug log and drop it into <a href="http://pastebin.freeswitch.org" target="_blank">pastebin.freeswitch.org</a>
                          and set the syntax highlight to &quot;FreeSWITCH
                          Log&quot;. <br>
                          <br>
                        </div>
                        Also, it would probably help if you gave us a
                        plain language description of what you are
                        trying to do with that dialplan snippet. I see a
                        lot of anti-actions which may or may not be what
                        you need. Maybe a brief description would help,
                        something like: &quot;When caller id 1005 calls in,
                        play file1.wav and then hangup.&quot; <br>
                        <br>
                      </div>
                      Lastly I recommend reviewing this wiki page: <a href="https://confluence.freeswitch.org/display/FREESWITCH/Troubleshooting+Debugging" target="_blank">https://confluence.freeswitch.org/display/FREESWITCH/Troubleshooting+Debugging</a><br>
                      <br>
                    </div>
                    It will get you on the right path for figuring out
                    what information to collect for the troubleshooting
                    process.<br>
                    <br>
                  </div>
                  -Michael<br>
                </div>
                <div class="gmail_extra"><br>
                  <div class="gmail_quote">On Fri, Oct 3, 2014 at 8:47
                    AM, Tom Angle <span dir="ltr">&lt;<a href="mailto:tangle70@gmail.com" target="_blank">tangle70@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">I
                      am new to Freeswitch.<br>
                      <br>
                      I am trying to create a MOH server for our
                      Metaswitch. Currently I have<br>
                      it working, but it will only play on audio file. I
                      would like to set it<br>
                      up to play a particular audio depending on the
                      inbound phone number. The<br>
                      below code is in my dialplan/default.xml and does
                      not work. Could<br>
                      someone tell me what I am doing wrong? Thanks for
                      any help.<br>
                      <br>
                      <br>
                           &lt;extension name=&quot;4000_hold_music&quot;&gt;<br>
                             &lt;condition
                      field=&quot;effective_caller_id_number&quot;
                      expression=&quot;^(1000)$&quot;&gt;<br>
                               &lt;action application=&quot;answer&quot;/&gt;<br>
                               &lt;action
                      application=&quot;execute_extension&quot; data=&quot;is_secure
                      XML<br>
                      features&quot;/&gt;<br>
                               &lt;action application=&quot;playback&quot;
                      data=&quot;$${hold_music}&quot;/&gt;<br>
                               &lt;anti-action application=&quot;set&quot;
                      data=&quot;zrtp_secure_media=true&quot;/&gt;<br>
                               &lt;anti-action application=&quot;answer&quot;/&gt;<br>
                               &lt;anti-action
                      application=&quot;execute_extension&quot;<br>
                      data=&quot;is_zrtp_secure XML features&quot;/&gt;<br>
                               &lt;anti-action application=&quot;playback&quot;
                      data=&quot;/music/music1.wav&quot;/&gt;<br>
                             &lt;/condition&gt;<br>
                      <br>
                             &lt;condition
                      field=&quot;effective_caller_id_number&quot;
                      expression=&quot;^(1005)$&quot;&gt;<br>
                               &lt;action application=&quot;answer&quot;/&gt;<br>
                               &lt;action
                      application=&quot;execute_extension&quot; data=&quot;is_secure
                      XML<br>
                      features&quot;/&gt;<br>
                               &lt;action application=&quot;playback&quot;
                      data=&quot;$${hold_music}&quot;/&gt;<br>
                               &lt;anti-action application=&quot;set&quot;
                      data=&quot;zrtp_secure_media=true&quot;/&gt;<br>
                               &lt;anti-action application=&quot;answer&quot;/&gt;<br>
                               &lt;anti-action
                      application=&quot;execute_extension&quot;<br>
                      data=&quot;is_zrtp_secure XML features&quot;/&gt;<br>
                               &lt;anti-action application=&quot;playback&quot;
                      data=&quot;/music/music4.wav&quot;/&gt;<br>
                             &lt;/condition&gt;<br>
                           &lt;/extension&gt;<br>
                      <br>
_________________________________________________________________________<br>
                      Professional FreeSWITCH Consulting Services:<br>
                      <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
                      <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
                      <br>
                      Official FreeSWITCH Sites<br>
                      <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
                      <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
                      <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
                      <br>
                      FreeSWITCH-powered IP PBX: The CudaTel
                      Communication Server<br>
                      <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
                      <br>
                      FreeSWITCH-users mailing list<br>
                      <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">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>
                </div>
                <br>
                <fieldset></fieldset>
                <br>
                <pre>_________________________________________________________________________
Professional FreeSWITCH Consulting Services: 
<a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a>

Official FreeSWITCH Sites
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a>

FreeSWITCH-powered IP PBX: The CudaTel Communication Server
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a>

FreeSWITCH-users mailing list
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></pre>
              </blockquote>
              <br>
            </div>
            <br>
_________________________________________________________________________<br>
            Professional FreeSWITCH Consulting Services:<br>
            <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
            <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
            <br>
            Official FreeSWITCH Sites<br>
            <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
            <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
            <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
            <br>
            FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
            <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
            <br>
            FreeSWITCH-users mailing list<br>
            <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">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>
      </div>
      <br>
      <fieldset></fieldset>
      <br>
      <pre>_________________________________________________________________________
Professional FreeSWITCH Consulting Services: 
<a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a>

Official FreeSWITCH Sites
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a>

FreeSWITCH-powered IP PBX: The CudaTel Communication Server
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a>

FreeSWITCH-users mailing list
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></pre>
    </blockquote>
    <br>
  </div>

<br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><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></div>