Hi Akash,<div><br></div><div>Thanks for sending the binary. Using this 21 of the channels got started but still the rest could not. It ran out of the restart attempts i.e. 30. I think we need to increase timeout limit to some more.</div>
<div><br></div><div>I made the changes in the source and recompiled the whole freeswitch with mod_freetdm but still my restart attempt limit was set to 3. <br><br><div class="gmail_quote">On Wed, Apr 17, 2013 at 1:33 PM, Akash Deep Verma <span dir="ltr"><<a href="mailto:akashdeep.co@gmail.com" target="_blank">akashdeep.co@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Ashish,<div><br></div><div>PFA, the compiled file which I used.</div><div><div class="gmail_extra"><div class="im">
<br clear="all"><div>Thanks & Regards,<br>-<br>Akash Deep Verma</div>
<br><br></div><div class="gmail_quote">On Wed, Apr 17, 2013 at 1:14 PM, <span dir="ltr"><<a href="mailto:freeswitch-users-request@lists.freeswitch.org" target="_blank">freeswitch-users-request@lists.freeswitch.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send FreeSWITCH-users mailing list submissions to<br>
<a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:freeswitch-users-request@lists.freeswitch.org" target="_blank">freeswitch-users-request@lists.freeswitch.org</a><br>
<br>
You can reach the person managing the list at<br>
<a href="mailto:freeswitch-users-owner@lists.freeswitch.org" target="_blank">freeswitch-users-owner@lists.freeswitch.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of FreeSWITCH-users digest..."<br>
<br>Today's Topics:<br>
<br>
1. Re: PRI channels suspended (Ashish gautam)<br>
2. Re: Respect the request URI domain and To URI domain when<br>
bridging (Jos? Luis Mill?n)<div><div class="h5"><br>
<br><br>---------- Forwarded message ----------<br>From: Ashish gautam <<a href="mailto:ashish@nms.co.in" target="_blank">ashish@nms.co.in</a>><br>To: FreeSWITCH Users Help <<a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a>><br>
Cc: <br>Date: Wed, 17 Apr 2013 12:33:23 +0530<br>Subject: Re: [Freeswitch-users] PRI channels suspended<br>Hi Akash,<div><br></div><div>I made these changes to the source and recompiled. Still the same this happening. Channels 5 to 30 are suspended.</div>
<div><br></div><div>Thanks.<br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 4:39 PM, Akash Deep Verma <span dir="ltr"><<a href="mailto:akashdeep.co@gmail.com" target="_blank">akashdeep.co@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div style="font-family:arial,sans-serif;font-size:13px">Hi Ashish,</div><div style="font-family:arial,sans-serif;font-size:13px">
<br></div><div style="font-family:arial,sans-serif;font-size:13px">This is a hack but you get what you need.</div>
<div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">This is because, whenever retry attempt is made 1 channel per pri get started, as there are 30 channels and retry attempts are 3 so the channels that freeswitch load is in between 3-6, so I increased retry attempt and complied it again. As I got rid of this error but it takes some time to load the pri channels (30*10 = 300seconds(5 seconds) max).</div>
<div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">Also, remember if you dial a call in between restarting phase you may face some error. To avoid this, dial call only after all pri channel get started.</div>
<div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">Here are the steps:</div><div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">
In freeswitch source:</div><div style="font-family:arial,sans-serif;font-size:13px">Edit libs/freetdm/src/ftmod/ftmod_libpri/ftmod_libpri.h<br></div><div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">
1. Decrease timeout of channels.</div><span style="font-family:arial,sans-serif;font-size:13px">#define T316_TIMEOUT_MS_DEFAULT 30000 /* 30 sec */</span><div style="font-family:arial,sans-serif;font-size:13px"><br>
<div>
change this to </div><div><br></div><div>#define T316_TIMEOUT_MS_DEFAULT 10000 /* 10 sec */<br></div><div><br></div><div>2. Increase attempts to 30.</div><div>#define T316_ATTEMPT_LIMIT_DEFAULT 3</div><div><br></div>
<div>change this to</div><div><br></div><div><div>#define T316_ATTEMPT_LIMIT_DEFAULT 30</div><div><br></div></div><div>3. Increase maximum limit as according to default(set more than that of default)</div><div>#define T316_ATTEMPT_LIMIT_MAX 10</div>
<div><br></div><div>change this to</div><div><div><br></div><div>#define T316_ATTEMPT_LIMIT_MAX 35</div><div><br></div><div>Thanks & Regards,<br>-<br>Akash Deep Verma</div><div><a href="http://in.linkedin.com/in/akashdeep1" target="_blank">http://in.linkedin.com/in/akashdeep1</a></div>
</div></div>
</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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></blockquote></div><br></div>
<br><br></div></div>---------- Forwarded message ----------<br>From: "José Luis Millán" <<a href="mailto:jmillan@aliax.net" target="_blank">jmillan@aliax.net</a>><br>To: FreeSWITCH Users Help <<a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a>><br>
Cc: <br>Date: Wed, 17 Apr 2013 09:43:31 +0200<br>Subject: Re: [Freeswitch-users] Respect the request URI domain and To URI domain when bridging<br><div dir="ltr">Hi,<div class="gmail_extra"><br><br><div class="gmail_quote">
2013/4/16 João Mesquita <span dir="ltr"><<a href="mailto:jmesquita@freeswitch.org" target="_blank">jmesquita@freeswitch.org</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Ain't that what fs_path is for? I am not sure, maybe someone can chime-in here...</div></blockquote><div><br></div><div>Yes, 'fs_path' is the directive I was looking for. It specifies to SIP proxy to which the message is being routed.</div>
<div><br></div><div>Thank you.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_extra"><span><font color="#888888"><br clear="all">
<div>João Mesquita<br>FreeSWITCH™ Solutions<br></div></font></span><div><div>
<br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 5:10 PM, José Luis Millán <span dir="ltr"><<a href="mailto:jmillan@aliax.net" target="_blank">jmillan@aliax.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hi,<div><br></div><div>It was easy to define the sip_invite_full_to for legB given the information exposed. I'm still unable to send the SIP request to a different host that the one specified in the request URI.</div>
<div><br></div><div>Can I send a request to a host that differs from the request URI domain and To header URI domain of legB? If it is possible, any reference to the doc will be much appreciated.</div><div>
<br></div><div>Regards.</div></div><div class="gmail_extra"><div><div><br><br><div class="gmail_quote">2013/4/16 Michael Collins <span dir="ltr"><<a href="mailto:msc@freeswitch.org" target="_blank">msc@freeswitch.org</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">For the most part I'd say yes. I think just having them on the wiki will be useful, even if it's just the self-explanatory part.<span><font color="#888888"><br>
-MC</font></span><div><div><br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 11:56 AM, João Mesquita <span dir="ltr"><<a href="mailto:jmesquita@freeswitch.org" target="_blank">jmesquita@freeswitch.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">MC, will do, although they are pretty self-explanatory, ain't it?</div><div class="gmail_extra"><br clear="all">
<div>João Mesquita<br>FreeSWITCH™ Solutions<br></div>
<br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 2:29 PM, Michael Collins <span dir="ltr"><<a href="mailto:msc@freeswitch.org" target="_blank">msc@freeswitch.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
J,<br><br>Thanks for this information. It looks like none of these are on the wiki. Any volunteers out there willing to add these? Even if you don't know what they do you could add placeholders for them. See <a href="http://wiki.freeswitch.org/wiki/Variable_skeleton" target="_blank">http://wiki.freeswitch.org/wiki/Variable_skeleton</a> for details.<br>
<br>Thanks,<br>MC<div><div><br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 9:32 AM, João Mesquita <span dir="ltr"><<a href="mailto:jmesquita@freeswitch.org" target="_blank">jmesquita@freeswitch.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">From sofia_glue.c:<div><br></div><div><div><span style="white-space:pre-wrap">        </span>const char *invite_record_route = switch_channel_get_variable(tech_pvt->channel, "sip_invite_record_route");</div>
<div><span style="white-space:pre-wrap">        </span>const char *invite_route_uri = switch_channel_get_variable(tech_pvt->channel, "sip_invite_route_uri");</div><div><span style="white-space:pre-wrap">        </span>const char *invite_full_from = switch_channel_get_variable(tech_pvt->channel, "sip_invite_full_from");</div>
<div><span style="white-space:pre-wrap">        </span>const char *invite_full_to = switch_channel_get_variable(tech_pvt->channel, "sip_invite_full_to");</div><div><span style="white-space:pre-wrap">        </span>const char *handle_full_from = switch_channel_get_variable(tech_pvt->channel, "sip_handle_full_from");</div>
<div><span style="white-space:pre-wrap">        </span>const char *handle_full_to = switch_channel_get_variable(tech_pvt->channel, "sip_handle_full_to");</div><div><span style="white-space:pre-wrap">        </span>const char *force_full_from = switch_channel_get_variable(tech_pvt->channel, "sip_force_full_from");</div>
<div><span style="white-space:pre-wrap">        </span>const char *force_full_to = switch_channel_get_variable(tech_pvt->channel, "sip_force_full_to");</div></div><div><br></div><div><br></div><div>Glad to see you using FS José Luis! :-D Welcome.</div>
<div class="gmail_extra"><br clear="all"><div>João Mesquita<br></div>
<br><br><div class="gmail_quote">On Tue, Apr 16, 2013 at 5:19 AM, José Luis Millán <span dir="ltr"><<a href="mailto:jmillan@aliax.net" target="_blank">jmillan@aliax.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Let me fix an error:<div><br></div><div><br></div><div>This is the message I would like to send to the IP 2.2.2.2 (my proxy)</div><div><div style="font-family:arial,sans-serif;font-size:13px">```</div>
<div style="font-family:arial,sans-serif;font-size:13px"><span style="font-size:11px;white-space:pre-wrap;font-family:'dejavu sans mono',monospace">INVITE <a href="mailto:sip%3Ajmillan@1.2.3.4" target="_blank">sip:jmillan@1.2.3.4</a> SIP/2.0
Via: SIP/2.0/TCP bl23sl8lmku7.invalid;branch=z9hG4bK9420964
To: <<a href="mailto:sip%3Ad@1.2.3.4" target="_blank">sip:jmillan@1.2.3.4</a>></span>```<span style="font-size:11px;white-space:pre-wrap;font-family:'dejavu sans mono',monospace">
</span></div><div style="font-family:arial,sans-serif;font-size:13px">```</div></div><div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">Regards.</div>
<div><br></div></div><div class="gmail_extra"><div><div><br><br><div class="gmail_quote">2013/4/16 José Luis Millán <span dir="ltr"><<a href="mailto:jmillan@aliax.net" target="_blank">jmillan@aliax.net</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hi all,<div><br></div><div>Every call bridged though a specific 'gateway' does rewrite the SIP request URI domain and To URI domain values to the gateway's 'proxy' parameter value.<br>
</div><div><br></div><div>I would like to respect such values and receive in my proxy the SIP messages with their original request URI domain and To URI domain. </div><div><br></div><div>This is, I would like to be able to send a SIP message with the following request URI and To headers, to the IP address 2.2.2.2</div>
<div><br></div><div>```</div><div><span style="font-size:11px;white-space:pre-wrap;font-family:'dejavu sans mono',monospace">INVITE <a href="mailto:sip%3Ajmillan@1.2.3.4" target="_blank">sip:jmillan@1.2.3.4</a> SIP/2.0
Via: SIP/2.0/TCP bl23sl8lmku7.invalid;branch=z9hG4bK9420964
To: <<a href="mailto:sip%3Ad@1.2.3.4" target="_blank">sip:d@1.2.3.4</a>></span>```<span style="font-size:11px;white-space:pre-wrap;font-family:'dejavu sans mono',monospace">
</span></div><div>```</div><div><br></div><div>Is it possible to handle this with FreeSwitch?<br></div><div><br></div><div>I have followed the FS wiki but I've been unable to handle this.</div>
<div><br></div><div>Thanks in advance.<span><font color="#888888"><br clear="all"><div><br></div>-- <br>José Luis Millán
</font></span></div></div>
</blockquote></div><br><br clear="all"><div><br></div></div></div><span><font color="#888888">-- <br>José Luis Millán
</font></span></div><div><div class="h5">
<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br></div></div><div><div class="h5">
<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br><br clear="all"><br></div></div><div class="im"><span><font color="#888888">-- <br>Michael S Collins<br>Twitter: @mercutioviz<br><a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
<a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br><br>
</font></span><br></div><div><div class="h5">_________________________________________________________________________<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br></div><div><div class="h5">
<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br><br clear="all"><br><div class="im">-- <br>Michael S Collins<br>Twitter: @mercutioviz<br><a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br><a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br><br>
</div></div></div><br><div class="im">_________________________________________________________________________<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></blockquote></div><br><br clear="all"><div><br></div>-- <br></div></div><span><font color="#888888">José Luis Millán
</font></span></div><div><div class="h5">
<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br></div></div></div><div><div class="h5">
<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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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" 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>
<br></div></div></blockquote></div><br><br clear="all"><span class="HOEnZb"><font color="#888888"><div><br></div>-- <br>José Luis Millán
</font></span></div></div><span class="HOEnZb"><font color="#888888">
<br>_______________________________________________</font></span><div class="im"><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>
<br></div></blockquote></div><br></div></div></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>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.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://wiki.freeswitch.org" target="_blank">http://wiki.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>
<br></blockquote></div><br></div>