<div dir="ltr"><div class="gmail_extra"><div><div class="gmail_signature"><div dir="ltr"><div><div>With individual &quot;destination&quot; number for every device, you can hit different parts of the dialplan e.g. auto-attendant.</div></div></div></div></div>
<br><div class="gmail_quote">On Tue, Apr 21, 2015 at 11:20 AM, Luiz Fernando Softov <span dir="ltr">&lt;<a href="mailto:fernando@softov.com.br" target="_blank">fernando@softov.com.br</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">To enable Voice you need to make a AT command<br>
<br>
i don&#39;t know in other system, but in FreeBSD i use &quot;cu&quot;<br>
<br>
&quot;cu -l /dev/ttyU0.1&quot;<br>
<br>
AT^CVOICE=0 Enable Voice<br>
AT^CVOICE=1 Disable Voice<br>
AT^CVOICE=? Check status<br>
<br>
Or you can use a software to unlock, it&#39;s not free, i think you need to paid<br>
<br>
<a href="https://www.dc-unlocker.com/" target="_blank">https://www.dc-unlocker.com/</a><br>
<br>
Some modems/dongle don&#39;t have the destination number write in SIM, and<br>
in source code variable &quot;destination&quot; will be used to make calls.<br>
If you want to change this, you need to do some changes in source code<br>
and write real number in SIM card<br>
<br>
To get number written in SIM<br>
<br>
AT+CNUM<br>
<br>
To write number in SIM i make this<br>
<br>
AT+CPBS=&quot;ON&quot;;^CPBW=1;^CPBW=1,&quot;556700000000&quot;,129<br>
<br>
You can get explain of this AT commands in <a href="http://google.com" target="_blank">google.com</a><br>
<br>
<br>
To receive calls, like &quot;Nandy&quot; say.<br>
<span class=""><br>
On gsmopen.conf.xml file, add this line between &lt;global_settings&gt; and<br>
&lt;/global_settings&gt;:<br>
<br>
&lt;param name=&quot;context&quot; value=&quot;public&quot;/&gt;<br>
&lt;param name=&quot;destination&quot; value=&quot;incoming_gsm_call&quot;/&gt;<br>
<br>
</span>Or to have a number per modem<br>
<span class=""><br>
&lt;configuration name=&quot;gsmopen.conf&quot; description=&quot;GSMopen Configuration&quot;&gt;<br>
  &lt;global_settings&gt;<br>
    &lt;param name=&quot;debug&quot; value=&quot;8&quot;/&gt;<br>
    &lt;param name=&quot;dialplan&quot; value=&quot;XML&quot;/&gt;<br>
    &lt;param name=&quot;context&quot; value=&quot;default&quot;/&gt;<br>
    &lt;param name=&quot;hold-music&quot; value=&quot;$${moh_uri}&quot;/&gt;<br>
</span><span class="">  &lt;/global_settings&gt;<br>
  &lt;!-- one entry here per gsmopen interface --&gt;<br>
  &lt;per_interface_settings&gt;<br>
    &lt;interface id=&quot;1&quot; name=&quot;gsm01&quot;&gt;<br>
</span>      &lt;param name=&quot;controldevice_name&quot; value=&quot;/dev/ttyU0.2&quot;/&gt;<br>
      &lt;param name=&quot;controldevice_audio_name&quot; value=&quot;/dev/ttyU0.1&quot;/&gt;<br>
      &lt;param name=&quot;destination&quot; value=&quot;99990001&quot;/&gt;<br>
    &lt;/interface&gt;<br>
    &lt;interface id=&quot;2&quot; name=&quot;gsm02&quot;&gt;<br>
      &lt;param name=&quot;controldevice_name&quot; value=&quot;/dev/ttyU1.2&quot;/&gt;<br>
      &lt;param name=&quot;controldevice_audio_name&quot; value=&quot;/dev/ttyU1.1&quot;/&gt;<br>
      &lt;param name=&quot;destination&quot; value=&quot;99990002&quot;/&gt;<br>
    &lt;/interface&gt;<br>
  &lt;/per_interface_settings&gt;<br>
&lt;/configuration&gt;<br>
<br>
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *<br>
* * * * * * * * * * * * * * * *<br>
<br>
Ring Extension 1001 based on GSM01<br>
<br>
&lt;extension name=&quot;incoming-mobile-call-1&quot;&gt;<br>
<span class="">   &lt;condition field=&quot;context&quot; expression=&quot;public&quot;/&gt;<br>
</span>   &lt;condition field=&quot;destination_number&quot; expression=&quot;99990001&quot;&gt;<br>
       &lt;action application=&quot;transfer&quot; data=&quot;1001 XML default&quot;/&gt;<br>
   &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
Ring Extension 1002 based on GSM02<br>
<br>
&lt;extension name=&quot;incoming-mobile-call-2&quot;&gt;<br>
<span class="">   &lt;condition field=&quot;context&quot; expression=&quot;public&quot;/&gt;<br>
</span>   &lt;condition field=&quot;destination_number&quot; expression=&quot;99990002&quot;&gt;<br>
       &lt;action application=&quot;transfer&quot; data=&quot;1002 XML default&quot;/&gt;<br>
   &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
2015-04-20 15:12 GMT-04:00 Anurag Rana &lt;<a href="mailto:anuragrana31189@gmail.com">anuragrana31189@gmail.com</a>&gt;:<br>
<div class="HOEnZb"><div class="h5">&gt; I tried but didn&#39;t worked. I edited the files as said above. Registered a<br>
&gt; Softphone with 1000 as user so that call can be received and dialled the sim<br>
&gt; number in dongle. Nothing happened.<br>
&gt;<br>
&gt; Do I need to do something like &quot;Unlocking voice capability&quot; as given in<br>
&gt; below link<br>
&gt; <a href="https://wiki.freeswitch.org/wiki/GSMopen#UNLOCK_THE_DONGLE.21.21.21" target="_blank">https://wiki.freeswitch.org/wiki/GSMopen#UNLOCK_THE_DONGLE.21.21.21</a><br>
&gt;<br>
&gt; I am using this device -<br>
&gt; <a href="http://www.amazon.in/Micromax-MMX210G-Data-Card-White/dp/B00MF91LZ2/ref=sr_1_2?ie=UTF8&amp;qid=1429556927&amp;sr=8-2&amp;keywords=micromax+dongle" target="_blank">http://www.amazon.in/Micromax-MMX210G-Data-Card-White/dp/B00MF91LZ2/ref=sr_1_2?ie=UTF8&amp;qid=1429556927&amp;sr=8-2&amp;keywords=micromax+dongle</a><br>
&gt;<br>
&gt; Anybody using this or similar device?<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Anurag Rana<br>
&gt; M.Tech CSE, IIIT-Delhi,<br>
&gt; <a href="https://sites.google.com/site/homepagerana/" target="_blank">https://sites.google.com/site/homepagerana/</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Apr 20, 2015 at 12:40 PM, Giovanni Maruzzelli &lt;<a href="mailto:gmaruzz@gmail.com">gmaruzz@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; you must set the destination, in global or interface specific section.<br>
&gt;&gt; If not set, there will be an error.<br>
&gt;&gt;<br>
&gt;&gt; -giovanni<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Apr 20, 2015 at 8:58 AM, Nandy Dagondon &lt;<a href="mailto:nandy1925@gmail.com">nandy1925@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; In the absence of &lt;param name=&quot;destination&quot; value=&quot;incoming_gsm_call&quot;/&gt;,<br>
&gt;&gt;&gt; I think the destination number will be the mobile number of the SIM<br>
&gt;&gt;&gt; installed on the USB dongle.  Can anyone confirm this?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Mon, Apr 20, 2015 at 2:55 PM, Nandy Dagondon &lt;<a href="mailto:nandy1925@gmail.com">nandy1925@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On gsmopen.conf.xml file, add this line between &lt;global_settings&gt; and<br>
&gt;&gt;&gt;&gt; &lt;/global_settings&gt;:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &lt;param name=&quot;context&quot; value=&quot;public&quot;/&gt;<br>
&gt;&gt;&gt;&gt; &lt;param name=&quot;destination&quot; value=&quot;incoming_gsm_call&quot;/&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On your dialplan add e.g. public/incoming-gsm-call.xml containing these<br>
&gt;&gt;&gt;&gt; lines to ring extension 1000<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &lt;extension name=&quot;incoming-mobile-call&quot;&gt;<br>
&gt;&gt;&gt;&gt;    &lt;condition field=&quot;context&quot; expression=&quot;public&quot;/&gt;<br>
&gt;&gt;&gt;&gt;    &lt;condition field=&quot;destination_number&quot; expression=&quot;incoming_gsm_call&quot;&gt;<br>
&gt;&gt;&gt;&gt;        &lt;action application=&quot;transfer&quot; data=&quot;1000 XML default&quot;/&gt;<br>
&gt;&gt;&gt;&gt;    &lt;/condition&gt;<br>
&gt;&gt;&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Good luck!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Sun, Apr 19, 2015 at 7:27 PM, Anurag Rana &lt;<a href="mailto:anuragrana31189@gmail.com">anuragrana31189@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Hi All,<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I have micromax usb dongle with a gsm sim in it attached to my system.<br>
&gt;&gt;&gt;&gt;&gt; mod_gsmopen has been compiled and has been loaded. Freeswitch is<br>
&gt;&gt;&gt;&gt;&gt; running.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; This is the output of lsusb command -<br>
&gt;&gt;&gt;&gt;&gt; ----------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt; Bus 002 Device 003: ID 064e:e263 Suyin Corp.<br>
&gt;&gt;&gt;&gt;&gt; Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching<br>
&gt;&gt;&gt;&gt;&gt; Hub<br>
&gt;&gt;&gt;&gt;&gt; Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<br>
&gt;&gt;&gt;&gt;&gt; Bus 001 Device 006: ID 1c9e:9605 OMEGA TECHNOLOGY<br>
&gt;&gt;&gt;&gt;&gt; Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching<br>
&gt;&gt;&gt;&gt;&gt; Hub<br>
&gt;&gt;&gt;&gt;&gt; Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<br>
&gt;&gt;&gt;&gt;&gt; Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub<br>
&gt;&gt;&gt;&gt;&gt; Bus 003 Device 011: ID 15d9:0a4e Trust International B.V.<br>
&gt;&gt;&gt;&gt;&gt; Bus 003 Device 010: ID 1a2c:0c21 China Resource Semico Co., Ltd<br>
&gt;&gt;&gt;&gt;&gt; Bus 003 Device 009: ID 1a40:0101 Terminus Technology Inc. 4-Port HUB<br>
&gt;&gt;&gt;&gt;&gt; Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; ---------------------------------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; This is the output of dmesg | grep tty command<br>
&gt;&gt;&gt;&gt;&gt; ----------------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt; [ 8114.018211] usb 1-1.2: GSM modem (1-port) converter now attached to<br>
&gt;&gt;&gt;&gt;&gt; ttyUSB0<br>
&gt;&gt;&gt;&gt;&gt; [ 8114.018840] usb 1-1.2: GSM modem (1-port) converter now attached to<br>
&gt;&gt;&gt;&gt;&gt; ttyUSB1<br>
&gt;&gt;&gt;&gt;&gt; [ 8114.019458] usb 1-1.2: GSM modem (1-port) converter now attached to<br>
&gt;&gt;&gt;&gt;&gt; ttyUSB2<br>
&gt;&gt;&gt;&gt;&gt; [ 8114.019961] usb 1-1.2: GSM modem (1-port) converter now attached to<br>
&gt;&gt;&gt;&gt;&gt; ttyUSB3<br>
&gt;&gt;&gt;&gt;&gt; ---------------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; This is the content of gsmopen.conf.xml file<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; -----------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt; &lt;configuration name=&quot;gsmopen.conf&quot; description=&quot;GSMopen Configuration&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;   &lt;global_settings&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;param name=&quot;debug&quot; value=&quot;8&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;param name=&quot;dialplan&quot; value=&quot;XML&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;param name=&quot;context&quot; value=&quot;default&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;param name=&quot;hold-music&quot; value=&quot;$${moh_uri}&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;param name=&quot;destination&quot; value=&quot;5000&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;   &lt;/global_settings&gt;<br>
&gt;&gt;&gt;&gt;&gt;   &lt;!-- one entry here per gsmopen interface --&gt;<br>
&gt;&gt;&gt;&gt;&gt;   &lt;per_interface_settings&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;interface id=&quot;1&quot; name=&quot;gsm01&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;param name=&quot;controldevice_name&quot; value=&quot;/dev/ttyUSB3&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;param name=&quot;controldevice_audio_name&quot; value=&quot;/dev/ttyUSB2&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;!-- in windowz would be, eg: --&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;!--<br>
&gt;&gt;&gt;&gt;&gt;       &lt;param name=&quot;controldevice_name&quot; value=&quot;COM4&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;       --&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;!-- 3G PC UI Interface is controldevice_name --&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;!--<br>
&gt;&gt;&gt;&gt;&gt;       &lt;param name=&quot;controldevice_audio_name&quot; value=&quot;COM2&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;       --&gt;<br>
&gt;&gt;&gt;&gt;&gt;       &lt;!-- 3G Application Interface is controldevice_audio_name --&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;/interface&gt;<br>
&gt;&gt;&gt;&gt;&gt;     &lt;!-- following interfaces are commented out!<br>
&gt;&gt;&gt;&gt;&gt;     --&gt;<br>
&gt;&gt;&gt;&gt;&gt;   &lt;/per_interface_settings&gt;<br>
&gt;&gt;&gt;&gt;&gt; &lt;/configuration&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; ------------------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I searched internet for &quot;how to receive a call using FS&quot; or &quot;How to<br>
&gt;&gt;&gt;&gt;&gt; make an inbound call using gsmopen&quot;<br>
&gt;&gt;&gt;&gt;&gt; but could not find detailed stepwise explanation.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Can someone please tell me what I need to do next so that when I call<br>
&gt;&gt;&gt;&gt;&gt; the sim number in dongle, call is received by FS and actions are performed<br>
&gt;&gt;&gt;&gt;&gt; based on dialplan.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; OR<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; direct me to some link which explains this. (apart from this<br>
&gt;&gt;&gt;&gt;&gt; <a href="https://freeswitch.org/confluence/display/FREESWITCH/mod_gsmopen" target="_blank">https://freeswitch.org/confluence/display/FREESWITCH/mod_gsmopen</a>)<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Thanks<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Anurag Rana<br>
&gt;&gt;&gt;&gt;&gt; M.Tech CSE, IIIT-Delhi,<br>
&gt;&gt;&gt;&gt;&gt; <a href="https://sites.google.com/site/homepagerana/" target="_blank">https://sites.google.com/site/homepagerana/</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Sincerely,<br>
&gt;&gt;<br>
&gt;&gt; Giovanni Maruzzelli<br>
&gt;&gt; Cell : <a href="tel:%2B39-347-2665618" value="+393472665618">+39-347-2665618</a><br>
&gt;&gt;<br>
&gt;&gt; _________________________________________________________________________<br>
&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;<br>
&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" 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">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
<br>
--<br>
</div></div><span class="HOEnZb"><font color="#888888">Luiz Fernando Softov<br>
<a href="http://www.softov.com.br" target="_blank">http://www.softov.com.br</a><br>
<a href="mailto:fernando@softov.com.br">fernando@softov.com.br</a><br>
</font></span><div class="HOEnZb"><div class="h5"><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-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></div>