<div dir="ltr">Oh, my God. So silly.<div><br></div><div>Kevin, thank you. I&#39;ve focused on logic more than on simple things and did not pay attention on misspelling :)</div></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Sep 29, 2016 at 6:18 PM David Villasmil &lt;<a href="mailto:david.villasmil.work@gmail.com">david.villasmil.work@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Lol! It&#39;s usually these things! Good catch!<br><div class="gmail_quote"><div dir="ltr">On Thu, Sep 29, 2016 at 5:04 PM Kevin Wormington &lt;<a href="mailto:kworm@sofnet.com" target="_blank">kworm@sofnet.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">expression is spelled wrong on ua_local and ua_mobile<br>
<br>
&gt; On Sep 29, 2016, at 9:54 AM, Vladyslav Zakhozhai &lt;<a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Mirko, thank you for your answer.<br>
&gt; Your information is very useful for me (I did not think that I need to close every condition but nevermind).<br>
&gt;<br>
&gt; But it is not actually my problem. Let me put it this way:<br>
&gt;<br>
&gt; &lt;context name=&quot;internal&quot;&gt;<br>
&gt; &lt;extension name=&quot;echo_test&quot; continue=true&gt;<br>
&gt;     &lt;condition field=&quot;destination_number&quot; expression=&quot;^(echo|9999)$&quot;&gt;<br>
&gt;         &lt;action application=&quot;log&quot; data=&quot;Start echo test.&quot;/&gt;<br>
&gt;         &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;         &lt;action application=&quot;echo&quot; data =&quot;&quot;/&gt;<br>
&gt;     &lt;/condition&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt;<br>
&gt; &lt;extension name=&quot;ua_local&quot; continue=true&gt;<br>
&gt;     &lt;condition field=&quot;destination_number&quot; experession=&quot;^[2-5][0-9]{6}$&quot;&gt;<br>
&gt;         &lt;action application=&quot;log&quot; data=&quot;INFO Extension ua_local&quot;/&gt;<br>
&gt;         &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/golden/${destination_number}&quot;/&gt;<br>
&gt;     &lt;/condition&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt;<br>
&gt; &lt;extension name=&quot;ua_mobile&quot; continue=true&gt;<br>
&gt;     &lt;condition field=&quot;destination_number&quot; experession=&quot;^0[1-9]{9}$&quot;&gt;<br>
&gt;         &lt;action application=&quot;log&quot; data=&quot;INFO Extension ua_mobile&quot;/&gt;<br>
&gt;         &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/golden/${destination_number}&quot;/&gt;<br>
&gt;     &lt;/condition&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt; &lt;/context&gt;<br>
&gt;<br>
&gt; I&#39;ve added some verbosity with logging extension name.<br>
&gt; Logs says that ua_mobile passed pattern check. But ua_local also passed the check. And ua_local is to be executed.<br>
&gt;<br>
&gt; But how 0930000000 can match ^[2-5][0-9]{6}$? And why in logs I see empty pattern against ua_local and ua_mobile:<br>
&gt;<br>
&gt; In case echo_test: destination_number(0930000000) =~ /^(echo|9999)$/ break=on-false<br>
&gt; In case ua_local and ua_mobile: destination_number(0930000000) =~ // break=on-false<br>
&gt;<br>
&gt; I&#39;m pretty confused :)<br>
&gt;<br>
&gt; And FS log:<br>
&gt;<br>
&gt; 2016-09-29 17:45:24.303629 [INFO] mod_dialplan_xml.c:637 Processing vlakas &lt;vlakas&gt;-&gt;0930000000 in context internal<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;echo_test] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (FAIL) [echo_test] destination_number(0930000000) =~ /^(echo|9999)$/ break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;ua_local] continue=true<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (PASS) [ua_local] destination_number(0930000000) =~ // break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action log(INFO Extension ua_local)<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action bridge(sofia/gateway/golden/${destination_number})<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;ua_mobile] continue=true<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (PASS) [ua_mobile] destination_number(0930000000) =~ // break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action log(INFO Extension ua_mobile)<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action bridge(sofia/gateway/golden/${destination_number})<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] switch_core_state_machine.c:286 (sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a>) State Change CS_ROUTING -&gt; CS_EXECUTE<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] switch_core_state_machine.c:602 (sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a>) State ROUTING going to sleep<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] switch_core_state_machine.c:543 (sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a>) Running State Change CS_EXECUTE<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] switch_core_state_machine.c:609 (sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a>) State EXECUTE<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] mod_sofia.c:198 sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> SOFIA EXECUTE<br>
&gt; 2016-09-29 17:45:24.303629 [DEBUG] switch_core_state_machine.c:328 sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Standard EXECUTE<br>
&gt; EXECUTE sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> log(INFO Extension ua_local)<br>
&gt; 2016-09-29 17:45:24.303629 [INFO] mod_dptools.c:1713 Extension ua_local<br>
&gt; EXECUTE sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> bridge(sofia/gateway/golden/0930000000)<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Sep 29, 2016 at 4:33 PM Mirko Brankovic &lt;<a href="mailto:mirkobrankovic@gmail.com" target="_blank">mirkobrankovic@gmail.com</a>&gt; wrote:<br>
&gt; You need to close both conditions.<br>
&gt; Correct this one:<br>
&gt;     &lt;extension name=&quot;is_internal_call&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; expression=&quot;.*&quot;/&gt;<br>
&gt;         &lt;condition field=&quot;${sip_h_X-Exten-Type}&quot; expression=&quot;internal&quot;&gt;<br>
&gt;               Some action<br>
&gt;          &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;<br>
&gt; with this one/or remove one:<br>
&gt;<br>
&gt;     &lt;extension name=&quot;is_internal_call&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; expression=&quot;.*&quot;/&gt;<br>
&gt;         &lt;condition field=&quot;${sip_h_X-Exten-Type}&quot; expression=&quot;internal&quot;&gt;<br>
&gt;               Some action<br>
&gt;          &lt;/condition&gt;<br>
&gt;          &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;<br>
&gt; On Thu, Sep 29, 2016 at 3:04 PM, Vladyslav Zakhozhai &lt;<a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a>&gt; wrote:<br>
&gt; David, thank you for your answer.<br>
&gt;<br>
&gt; I&#39;ve mentioned that I have no problems with extension is_local_call. It will be matched only if SIP message has custom header X-Exten-Type=internal.<br>
&gt;<br>
&gt; If SIP message has no this header and To user is 0930000000 it does not match ua_mobile, but ua_local for some reason.<br>
&gt;<br>
&gt; When I&#39;d remove is_local_call all numeric destinations are matched against ua_local.<br>
&gt;<br>
&gt; Here is part of FS log:<br>
&gt;<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;echo_test] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (FAIL) [echo_test] destination_number(0930000000) =~ /^(echo|9999)$/ break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;is_internal_call] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (PASS) [is_internal_call] destination_number(0930000000) =~ /.*/ break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (FAIL) [is_internal_call] ${sip_h_X-Exten-Type}() =~ /internal/ break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;ua_local] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (PASS) [ua_local] destination_number(0930000000) =~ // break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action log(sip_h_X-Exten-Type: ${sip_h_X-Exten-Type}.)<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action bridge(sofia/gateway/golden/${destination_number})<br>
&gt;<br>
&gt; I&#39;ve removed extension is_local_call and have:<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;echo_test] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (FAIL) [echo_test] destination_number(0930000000) =~ /^(echo|9999)$/ break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> parsing [internal-&gt;ua_local] continue=false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Regex (PASS) [ua_local] destination_number(0930000000) =~ // break=on-false<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action log(sip_h_X-Exten-Type: ${sip_h_X-Exten-Type}.)<br>
&gt; Dialplan: sofia/internal/<a href="mailto:vlakas@unitrans.tull.pp.ua" target="_blank">vlakas@unitrans.tull.pp.ua</a> Action bridge(sofia/gateway/golden/${destination_number})<br>
&gt;<br>
&gt; I can&#39;t understand why expression in log for ua_local is empty<br>
&gt;<br>
&gt; Regex (PASS) [ua_local] destination_number(0930000000) =~ // break=on-false<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Sep 29, 2016 at 3:03 PM David Villasmil &lt;<a href="mailto:david.villasmil.work@gmail.com" target="_blank">david.villasmil.work@gmail.com</a>&gt; wrote:<br>
&gt; you&#39;re hitting internal before  09<br>
&gt;<br>
&gt;  &lt;extension name=&quot;is_internal_call&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; expression=&quot;.*&quot;/&gt;<br>
&gt;         &lt;condition field=&quot;${sip_h_X-Exten-Type}&quot; expression=&quot;internal&quot;&gt;<br>
&gt;               Some action<br>
&gt;          &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;<br>
&gt;     &lt;extension name=&quot;ua_mobile&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; experession=&quot;^0[0-9]{9}$&quot;&gt;<br>
&gt;             &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/golden/${destination_number}&quot;/&gt;<br>
&gt;         &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;<br>
&gt; try removing &quot;        &lt;condition field=&quot;destination_number&quot; expression=&quot;.*&quot;/&gt;&quot;<br>
&gt;<br>
&gt; On Thu, Sep 29, 2016 at 10:41 AM, Vladyslav Zakhozhai &lt;<a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a>&gt; wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;ve mentioned that pattern matching in my dialplan works incorrectly but I can&#39;t figure out the main reason.<br>
&gt;<br>
&gt; For example I have the following dialplan:<br>
&gt; &lt;context name=&quot;internal&quot;&gt;<br>
&gt;     &lt;extension name=&quot;echo_test&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; expression=&quot;^(echo|9999)$&quot;&gt;<br>
&gt;              Some action<br>
&gt;         &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;     &lt;extension name=&quot;is_internal_call&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; expression=&quot;.*&quot;/&gt;<br>
&gt;         &lt;condition field=&quot;${sip_h_X-Exten-Type}&quot; expression=&quot;internal&quot;&gt;<br>
&gt;               Some action<br>
&gt;          &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt;     &lt;extension name=&quot;ua_local&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; experession=&quot;^[2-5][0-9]{6}$&quot;&gt;<br>
&gt;             Some action<br>
&gt;          &lt;/condition<br>
&gt;     &lt;/extension&gt;<br>
&gt;     &lt;extension name=&quot;ua_mobile&quot;&gt;<br>
&gt;         &lt;condition field=&quot;destination_number&quot; experession=&quot;^0[0-9]{9}$&quot;&gt;<br>
&gt;             &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/golden/${destination_number}&quot;/&gt;<br>
&gt;         &lt;/condition&gt;<br>
&gt;     &lt;/extension&gt;<br>
&gt; &lt;/context&gt;<br>
&gt;<br>
&gt; 1. Call to &quot;echo&quot; - OK (echo_test)<br>
&gt; 2. Call to some extension with custom header X-Exten-Type - OK (is_internal_call)<br>
&gt; 3. Call to 5930000 - OK (ua_local)<br>
&gt; 4. Call to 0930000000 - FAILED to match ua_mobile extension.<br>
&gt;<br>
&gt; The last call matches ua_local. But why?<br>
&gt;<br>
&gt; The result of regex dp_tool<br>
&gt; freeswitch@vlakas&gt; regex 5930000|^[2-5][0-9]{6}$<br>
&gt; true<br>
&gt; freeswitch@vlakas&gt; regex 0930000000|^[2-5][0-9]{6}$<br>
&gt; false<br>
&gt;<br>
&gt; So, everything is correct. I can&#39;t understand why almost everyting goes to ua_local extension.<br>
&gt;<br>
&gt; I appreciate you help.<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Vladyslav Zakhozhai<br>
&gt; email: <a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a><br>
&gt; tel.: +380(93) 757-21-61<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Vladyslav Zakhozhai<br>
&gt; email: <a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a><br>
&gt; tel.: +380(93) 757-21-61<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Regards,<br>
&gt; Mirko<br>
&gt; ¯\_(ツ)_/¯<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Vladyslav Zakhozhai<br>
&gt; email: <a href="mailto:v.zakhozhai@gmail.com" target="_blank">v.zakhozhai@gmail.com</a><br>
&gt; tel.: +380(93) 757-21-61<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
<br>
<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" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.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" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a></blockquote></div>
_________________________________________________________________________<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" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.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" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a></blockquote></div><div dir="ltr">-- <br></div><div data-smartmail="gmail_signature"><div dir="ltr">Best regards,<div>Vladyslav Zakhozhai</div><div>email: <a href="mailto:v.zakhozhai@gmail.com">v.zakhozhai@gmail.com</a></div><div>tel.: +380(93) 757-21-61</div></div></div>