<div dir="ltr"><div><div><div>Thanks guys for your valuable pointers. <br></div><br></div>Stanislav : I feel sorry to say that we are not that expert to help you, both programmatically or financially.<br><br></div><div>We will use opensips at front end(since we are more comfortable with it) and for else freeswitch.<br><br></div><div>Once again Thanks a lot.<br></div><div>Have a good day.<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 11 June 2015 at 06:27, Alex Balashov <span dir="ltr">&lt;<a href="mailto:abalashov@evaristesys.com" target="_blank">abalashov@evaristesys.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Kamailio is a natural choice for a lot of the &quot;Class 4&quot; call processing that doesn&#39;t require higher-order/application-level media services in general.<br>
<span class=""><br>
--<br>
Alex Balashov | Principal | Evariste Systems LLC<br>
303 Perimeter Center North, Suite 300<br>
Atlanta, GA 30346<br>
United States<br>
<br>
Tel: <a href="tel:%2B1-800-250-5920" value="+18002505920">+1-800-250-5920</a> (toll-free) / <a href="tel:%2B1-678-954-0671" value="+16789540671">+1-678-954-0671</a> (direct)<br>
Web: <a href="http://www.evaristesys.com/" rel="noreferrer" target="_blank">http://www.evaristesys.com/</a>, <a href="http://www.csrpswitch.com/" rel="noreferrer" target="_blank">http://www.csrpswitch.com/</a><br>
<br>
</span>Sent from my BlackBerry.<br>
  Original Message  <br>
From: Stanislav Sinyagin<br>
Sent: Thursday, June 11, 2015 09:20<br>
To: FreeSWITCH Users Help<br>
Reply To: FreeSWITCH Users Help<br>
Subject: Re: [Freeswitch-users] help in architecture<br>
<div class="HOEnZb"><div class="h5"><br>
I like Kamailio, but actually both can do this job nicely. We could<br>
even create a config that works for both :-)<br>
<br>
we only need to find enough business interest and sponsorship for such<br>
a project.<br>
<br>
On Thu, Jun 11, 2015 at 2:17 PM, Victor Medina<br>
&lt;<a href="mailto:victor.medina@cibersys.com">victor.medina@cibersys.com</a>&gt; wrote:<br>
&gt; Why not OpenSIPS? I find OpenSIPS documentation way better and both projects<br>
&gt; are quite similar<br>
&gt;<br>
&gt; El 10/06/2015 19:21, &quot;Giovanni Maruzzelli&quot; &lt;<a href="mailto:gmaruzz@gmail.com">gmaruzz@gmail.com</a>&gt; escribió:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Jun 11, 2015 at 12:24 AM, Stanislav Sinyagin &lt;<a href="mailto:ssinyagin@gmail.com">ssinyagin@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; How about an open-design and open-source project? Many companies want<br>
&gt;&gt;&gt; the same, and now they have to design and build the whole thing from<br>
&gt;&gt;&gt; scratch. Everyone could actually benefit from a joint effort instead.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I think residential mass service should be completely separated from<br>
&gt;&gt;&gt; business PBX service, as they have completely orthogonal requirements.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I would propose something like this for residential users:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 1. Kamailio cluster handles user registrations and SIP OPTIONS pings.<br>
&gt;&gt;&gt; It also blocks some basic scanning and DOS attacks. The user<br>
&gt;&gt;&gt; registrations are stored in a backend SQL database.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2. Calls from users are handled by Kamailio&#39;s DISPATCHER module, and<br>
&gt;&gt;&gt; it sends them to a pool of FreeSWITCH media servers in round-robin or<br>
&gt;&gt;&gt; hash-based fashion.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 3. As the call from a user arrives to FreeSWITCH server, it places it<br>
&gt;&gt;&gt; to &amp;park() application. Then, an external routing program catches this<br>
&gt;&gt;&gt; event via ESL, and makes the routing decision: if the destination is<br>
&gt;&gt;&gt; one of our own users, we take the user&#39;s location from Kamailio&#39;s<br>
&gt;&gt;&gt; registrar database and send the call to Kamailio for further<br>
&gt;&gt;&gt; forwarding to the user (the SIP INVITE toward the user should come<br>
&gt;&gt;&gt; from registrar&#39;s IP address and port, otherwise NAT firewalls will<br>
&gt;&gt;&gt; block it).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 4. If the destination is not our own user, the routing program sends<br>
&gt;&gt;&gt; the call to one of PSTN trunks. Here it may also have some logic, like<br>
&gt;&gt;&gt; cost optimization and trunk status monitoring.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 5. Incoming calls from PSTN are also parked and handled by our routing<br>
&gt;&gt;&gt; program.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 6. If the SIP user is not reachable, the routing program looks up in<br>
&gt;&gt;&gt; user&#39;s preferences and sends the call to voicemail or forwarding<br>
&gt;&gt;&gt; destination. The user may also have some calendar or time-of-day<br>
&gt;&gt;&gt; options -- the program should actually be modular and extendable, so<br>
&gt;&gt;&gt; that new features are added as needed, and also third parties can add<br>
&gt;&gt;&gt; their own functionality.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Golang.org is probably one of the best choices for such a routing<br>
&gt;&gt;&gt; program.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; -----------------<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; for business PBX, it makes sense to register users at FreeSWITCH --<br>
&gt;&gt;&gt; then we have BLF and notofocations working out of the box. Kamailio<br>
&gt;&gt;&gt; can still be used for security screening and fault tolerance. Also<br>
&gt;&gt;&gt; business customers will want conference bridges, and probably video<br>
&gt;&gt;&gt; calls or video conferencing. So, here it&#39;s a completely different<br>
&gt;&gt;&gt; challenge, and needs to be designed separately. User registrations<br>
&gt;&gt;&gt; could be served with mod_xml_curl, and call routing could also be<br>
&gt;&gt;&gt; routed by an external program via ESL.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I would be glad to jump in onto such a project if it were open-source<br>
&gt;&gt;&gt; and open-design.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Also, you can have the same database table used by Kamailio for<br>
&gt;&gt; registrations (read-write), used also by FreeSWITCH (read-only).<br>
&gt;&gt;<br>
&gt;&gt; That would greatly simplify things.<br>
&gt;&gt;<br>
&gt;&gt; Add a NAS for configurations and media storage (prompts, voicemails, etc),<br>
&gt;&gt; some logic for having (audio|video) conferences participants to go on the<br>
&gt;&gt; same box, and you have an interesting solution, that keep most of the logic<br>
&gt;&gt; on FreeSWITCH side, and can permit to dish out &quot;advanced&quot; services to<br>
&gt;&gt; residential customers too.<br>
&gt;&gt;<br>
&gt;&gt; -giovanni<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Wed, Jun 10, 2015 at 11:47 PM, Aqs Younas &lt;<a href="mailto:aqsyounas@gmail.com">aqsyounas@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt; Thanks your for reply.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Alex: We are planning some pbx related functions too. Like voicemail,<br>
&gt;&gt;&gt; &gt; ivr,<br>
&gt;&gt;&gt; &gt; block numbers.<br>
&gt;&gt;&gt; &gt; Thats why we chose to keep registrations at freeswitch end.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; On 10 June 2015 at 14:38, Aqs Younas &lt;<a href="mailto:aqsyounas@gmail.com">aqsyounas@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Thanks for your reply.<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Stanislav Sinyagin : Majority of them are residential users with<br>
&gt;&gt;&gt; &gt;&gt; simple<br>
&gt;&gt;&gt; &gt;&gt; service.<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; On 10 June 2015 at 14:13, Stanislav Sinyagin &lt;<a href="mailto:ssinyagin@gmail.com">ssinyagin@gmail.com</a>&gt;<br>
&gt;&gt;&gt; &gt;&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Are those residential users with a uniform and simple service, or<br>
&gt;&gt;&gt; &gt;&gt;&gt; business customers with small work groups and business-specific call<br>
&gt;&gt;&gt; &gt;&gt;&gt; routing?<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Jun 10, 2015 10:54 PM, &quot;Aqs Younas&quot; &lt;<a href="mailto:aqsyounas@gmail.com">aqsyounas@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Hope you all are having a good day. :)<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; I need some suggestions in designing SIP trunking with freeswitch.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; We are required to register more than 10,000 users on multiple<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; freeswitch instances sharing same database.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; How can we load balance registration on each freeswitch so, they<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; have<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; equal number of registrations.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; I know with mod_xml_curl i can have freeswitch share same database.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; But<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; how can i load balance registrations?<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; (inbound calls must be directed to that freeswitch with which user<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; is<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; registered)<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Or any suggestion how we can achieve this, so, that we can add more<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; freeswitch in future.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Thanks for your help.<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&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;&gt;&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;&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;&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;&gt;&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&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;&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;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&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;&gt;&gt; &gt;&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _________________________________________________________________________<br>
&gt;&gt;&gt; &gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt; &gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt; &gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt; &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;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &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;&gt;&gt; &gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><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" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt;&gt; <a href="http://www.cluecon.com" rel="noreferrer" 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" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" 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" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt; <a href="http://www.cluecon.com" rel="noreferrer" 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" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><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" 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">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>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">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">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><br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">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">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><br>
</div></div></blockquote></div><br></div>