I don&#39;t know mod_lcr that well, but it seems to me they just want the first record from whatever set returned ordered by the order clause.<br>If they all mean basically the same thing, meaning it will return the first record of the resulting set ordered, it should work. <br>Unless I&#39;m mistaking something.<br><div class="gmail_quote"><div dir="ltr">On Sat, Oct 8, 2016 at 1:53 AM Guillermo Ruiz Camauer &lt;<a href="mailto:grcamauer@gmail.com">grcamauer@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"><div dir="ltr" class="gmail_msg">Thanks David.<div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">Looking though the code, I see that the LIMIT 1 clause is used several times in contexts similar to this:</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><div class="gmail_msg">   /* Checking for cid field, adding if needed */</div><div class="gmail_msg">          if (db_check(&quot;SELECT cid FROM lcr LIMIT 1&quot;) == SWITCH_TRUE) {</div><div class="gmail_msg">              switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, &quot;cid field defined.\n&quot;);</div></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I gather they are limiting to 1 record because there might be people that have huge tables and it wouldn&#39;t make sense to bring back all those records...</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">But as can be seen below, limiting records doesn&#39;t seem to be one of those standard SQL things...</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg">Returning only the first N records in a SQL query differs quite a bit between database platforms. Here&#39;s some samples:</p><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg"><strong style="box-sizing:border-box" class="gmail_msg">Microsoft SQL Server</strong></p><pre class="m_-4516330069767154418gmail-pre-scrollable gmail_msg" style="box-sizing:border-box;overflow-x:auto;overflow-y:scroll;font-family:menlo,monaco,consolas,&quot;courier new&quot;,monospace;font-size:9pt;padding:5px;margin-top:0px;margin-bottom:11px;line-height:1.42857;word-break:break-all;word-wrap:normal;color:rgb(51,51,51);background-color:rgb(251,251,251);border-width:1px 1px 1px 2px;border-style:solid;border-color:rgb(204,204,204) rgb(204,204,204) rgb(204,204,204) silver;border-radius:4px;width:1038.33px;max-height:340px">SELECT <strong style="box-sizing:border-box" class="gmail_msg">TOP 10</strong> column FROM table
</pre><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg"><strong style="box-sizing:border-box" class="gmail_msg">PostgreSQL and MySQL</strong></p><pre class="m_-4516330069767154418gmail-pre-scrollable gmail_msg" style="box-sizing:border-box;overflow-x:auto;overflow-y:scroll;font-family:menlo,monaco,consolas,&quot;courier new&quot;,monospace;font-size:9pt;padding:5px;margin-top:0px;margin-bottom:11px;line-height:1.42857;word-break:break-all;word-wrap:normal;color:rgb(51,51,51);background-color:rgb(251,251,251);border-width:1px 1px 1px 2px;border-style:solid;border-color:rgb(204,204,204) rgb(204,204,204) rgb(204,204,204) silver;border-radius:4px;width:1038.33px;max-height:340px">SELECT column FROM table
<strong style="box-sizing:border-box" class="gmail_msg">LIMIT 10</strong>
</pre><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg"><strong style="box-sizing:border-box" class="gmail_msg">Oracle</strong></p><pre class="m_-4516330069767154418gmail-pre-scrollable gmail_msg" style="box-sizing:border-box;overflow-x:auto;overflow-y:scroll;font-family:menlo,monaco,consolas,&quot;courier new&quot;,monospace;font-size:9pt;padding:5px;margin-top:0px;margin-bottom:11px;line-height:1.42857;word-break:break-all;word-wrap:normal;color:rgb(51,51,51);background-color:rgb(251,251,251);border-width:1px 1px 1px 2px;border-style:solid;border-color:rgb(204,204,204) rgb(204,204,204) rgb(204,204,204) silver;border-radius:4px;width:1038.33px;max-height:340px">SELECT column FROM table
<strong style="box-sizing:border-box" class="gmail_msg">WHERE ROWNUM &lt;= 10</strong>
</pre><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg"><strong style="box-sizing:border-box" class="gmail_msg">Sybase</strong></p><pre class="m_-4516330069767154418gmail-pre-scrollable gmail_msg" style="box-sizing:border-box;overflow-x:auto;overflow-y:scroll;font-family:menlo,monaco,consolas,&quot;courier new&quot;,monospace;font-size:9pt;padding:5px;margin-top:0px;margin-bottom:11px;line-height:1.42857;word-break:break-all;word-wrap:normal;color:rgb(51,51,51);background-color:rgb(251,251,251);border-width:1px 1px 1px 2px;border-style:solid;border-color:rgb(204,204,204) rgb(204,204,204) rgb(204,204,204) silver;border-radius:4px;width:1038.33px;max-height:340px"><strong style="box-sizing:border-box" class="gmail_msg">SET rowcount 10</strong>
SELECT column FROM table
</pre><p style="box-sizing:border-box;margin:0px 0px 11px;color:rgb(51,51,51);font-family:georgia,&quot;times new roman&quot;,times,serif;font-size:16px" class="gmail_msg"><strong style="box-sizing:border-box" class="gmail_msg">Firebird</strong></p><pre class="m_-4516330069767154418gmail-pre-scrollable gmail_msg" style="box-sizing:border-box;overflow-x:auto;overflow-y:scroll;font-family:menlo,monaco,consolas,&quot;courier new&quot;,monospace;font-size:9pt;padding:5px;margin-top:0px;margin-bottom:11px;line-height:1.42857;word-break:break-all;word-wrap:normal;color:rgb(51,51,51);background-color:rgb(251,251,251);border-width:1px 1px 1px 2px;border-style:solid;border-color:rgb(204,204,204) rgb(204,204,204) rgb(204,204,204) silver;border-radius:4px;width:1038.33px;max-height:340px">SELECT <strong style="box-sizing:border-box" class="gmail_msg">FIRST 10</strong> column 
FROM table</pre></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I&#39;m wondering if they couldn&#39;t do something like &quot;select distinct XXXX..&quot;  to mitigate this, but still be compatible with all ODBC backends.  SELECT DISTINCT seems to be standard (at least I checked ORACLE, POSTGRES, mySQL and MSSQL.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">Guillermo</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><br class="gmail_msg"></div></div><div class="gmail_extra gmail_msg"><br class="gmail_msg"><div class="gmail_quote gmail_msg">On Fri, Oct 7, 2016 at 8:29 PM, David Villasmil <span dir="ltr" class="gmail_msg">&lt;<a href="mailto:david.villasmil.work@gmail.com" class="gmail_msg" target="_blank">david.villasmil.work@gmail.com</a>&gt;</span> wrote:<br class="gmail_msg"><blockquote class="gmail_quote gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="gmail_msg">It shouldn&#39;t be too hard to patch it for MSSQL, maybe that&#39;s the way to go.<div class="gmail_msg">I have no idea whether anyone&#39;s implemented that, sorry.</div></div><div hspace="streak-pt-mark" style="max-height:1px" class="gmail_msg"><img style="width:0px;max-height:0px;overflow:hidden" src="https://mailfoogae.appspot.com/t?sender=aZGF2aWQudmlsbGFzbWlsLndvcmtAZ21haWwuY29t&amp;type=zerocontent&amp;guid=88edaf59-b62e-4dcd-8d26-36ee767f4f7f" class="gmail_msg"><font color="#ffffff" size="1" class="gmail_msg">ᐧ</font></div><div class="m_-4516330069767154418HOEnZb gmail_msg"><div class="m_-4516330069767154418h5 gmail_msg"><div class="gmail_extra gmail_msg"><br class="gmail_msg"><div class="gmail_quote gmail_msg">On Sat, Oct 8, 2016 at 1:26 AM, Guillermo Ruiz Camauer <span dir="ltr" class="gmail_msg">&lt;<a href="mailto:grcamauer@gmail.com" class="gmail_msg" target="_blank">grcamauer@gmail.com</a>&gt;</span> wrote:<br class="gmail_msg"><blockquote class="gmail_quote gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="gmail_msg">Yes, I have ODBC working on my FS box, and I have updated the lcr.conf.xml file with the DSN.<div class="gmail_msg">The problem is that when I load the module I get errors like:</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg"><div class="gmail_msg">2016-10-06 15:35:35.560192 [ERR] switch_odbc.c:522 ERR: [SELECT codec FROM carrier_gateway LIMIT 1]</div><div class="gmail_msg">[STATE: 42000 CODE 102 ERROR: [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Incorrect syntax near &#39;1&#39;.</div><div class="gmail_msg">]</div><div class="gmail_msg">2016-10-06 15:35:35.560212 [ERR] switch_core_sqldb.c:587 ODBC SQL ERR [STATE: 42000 CODE 102 ERROR: [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Incorrect syntax near &#39;1&#39;.</div><div class="gmail_msg">]</div><div class="gmail_msg">SELECT codec FROM carrier_gateway LIMIT 1</div></div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">MSSQL doesn&#39;t accept &quot;LIMIT 1&quot;.  The equivalent syntax would be &quot;SELECT top 1 codec FROM carrier_gateway&quot;.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I was wondering if I will have to make a custum version of mod_lcr (which I must then maintain), or if there is some setting that I am not seeing to make it compatible with MS SQL.</div><div class="gmail_msg">If anybody has gone down this road,  would like some feedback.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">Thanks!</div></div><div class="gmail_extra gmail_msg"><div class="gmail_msg"><div class="m_-4516330069767154418m_-7406608409193382414h5 gmail_msg"><br class="gmail_msg"><div class="gmail_quote gmail_msg">On Fri, Oct 7, 2016 at 8:12 PM, David Villasmil <span dir="ltr" class="gmail_msg">&lt;<a href="mailto:david.villasmil.work@gmail.com" class="gmail_msg" target="_blank">david.villasmil.work@gmail.com</a>&gt;</span> wrote:<br class="gmail_msg"><blockquote class="gmail_quote gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="gmail_msg">You can probably just use odbc, have you tried that?</div><div hspace="streak-pt-mark" style="max-height:1px" class="gmail_msg"><img style="width:0px;max-height:0px;overflow:hidden" src="https://mailfoogae.appspot.com/t?sender=aZGF2aWQudmlsbGFzbWlsLndvcmtAZ21haWwuY29t&amp;type=zerocontent&amp;guid=f68fce25-d14f-4d87-94e0-e23779020f4b" class="gmail_msg"><font color="#ffffff" size="1" class="gmail_msg">ᐧ</font></div><div class="gmail_extra gmail_msg"><br class="gmail_msg"><div class="gmail_quote gmail_msg"><div class="gmail_msg"><div class="m_-4516330069767154418m_-7406608409193382414m_2254711236529165387h5 gmail_msg">On Sat, Oct 8, 2016 at 1:10 AM, Guillermo Ruiz Camauer <span dir="ltr" class="gmail_msg">&lt;<a href="mailto:grcamauer@gmail.com" class="gmail_msg" target="_blank">grcamauer@gmail.com</a>&gt;</span> wrote:<br class="gmail_msg"></div></div><blockquote class="gmail_quote gmail_msg" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_msg"><div class="m_-4516330069767154418m_-7406608409193382414m_2254711236529165387h5 gmail_msg"><div dir="ltr" class="gmail_msg">Does anyone have mod_lcr running against a MSSQL database through ODBC?  What modifications did you have to make?<span class="m_-4516330069767154418m_-7406608409193382414m_2254711236529165387m_-6508860443951375755HOEnZb gmail_msg"><font color="#888888" class="gmail_msg"><br clear="all" class="gmail_msg"><div class="gmail_msg"><br class="gmail_msg"></div>-- <br class="gmail_msg"><div class="m_-4516330069767154418m_-7406608409193382414m_2254711236529165387m_-6508860443951375755m_-5722558001572916920gmail_signature gmail_msg" data-smartmail="gmail_signature">Guillermo Ruiz Camauer<br class="gmail_msg"></div>
</font></span></div>
<br class="gmail_msg"></div></div>_________________________________________________________________________<br class="gmail_msg">
Professional FreeSWITCH Consulting Services:<br class="gmail_msg">
<a href="mailto:consulting@freeswitch.org" class="gmail_msg" target="_blank">consulting@freeswitch.org</a><br class="gmail_msg">
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitchsolutions.com</a><br class="gmail_msg">
<br class="gmail_msg">
Official FreeSWITCH Sites<br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg">
<a href="http://confluence.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://confluence.freeswitch.org</a><br class="gmail_msg">
<a href="http://www.cluecon.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.cluecon.com</a><br class="gmail_msg">
<br class="gmail_msg">
FreeSWITCH-users mailing list<br class="gmail_msg">
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" class="gmail_msg" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br class="gmail_msg">
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="gmail_msg">
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg"></blockquote></div><br class="gmail_msg"></div>
<br class="gmail_msg">_________________________________________________________________________<br class="gmail_msg">
Professional FreeSWITCH Consulting Services:<br class="gmail_msg">
<a href="mailto:consulting@freeswitch.org" class="gmail_msg" target="_blank">consulting@freeswitch.org</a><br class="gmail_msg">
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitchsolutions.com</a><br class="gmail_msg">
<br class="gmail_msg">
Official FreeSWITCH Sites<br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg">
<a href="http://confluence.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://confluence.freeswitch.org</a><br class="gmail_msg">
<a href="http://www.cluecon.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.cluecon.com</a><br class="gmail_msg">
<br class="gmail_msg">
FreeSWITCH-users mailing list<br class="gmail_msg">
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" class="gmail_msg" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br class="gmail_msg">
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="gmail_msg">
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg"></blockquote></div><br class="gmail_msg"><br clear="all" class="gmail_msg"><div class="gmail_msg"><br class="gmail_msg"></div></div></div><span class="m_-4516330069767154418m_-7406608409193382414HOEnZb gmail_msg"><font color="#888888" class="gmail_msg">-- <br class="gmail_msg"><div class="m_-4516330069767154418m_-7406608409193382414m_2254711236529165387gmail_signature gmail_msg" data-smartmail="gmail_signature">Guillermo Ruiz Camauer<br class="gmail_msg"></div>
</font></span></div>
<br class="gmail_msg">_________________________________________________________________________<br class="gmail_msg">
Professional FreeSWITCH Consulting Services:<br class="gmail_msg">
<a href="mailto:consulting@freeswitch.org" class="gmail_msg" target="_blank">consulting@freeswitch.org</a><br class="gmail_msg">
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitchsolutions.com</a><br class="gmail_msg">
<br class="gmail_msg">
Official FreeSWITCH Sites<br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg">
<a href="http://confluence.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://confluence.freeswitch.org</a><br class="gmail_msg">
<a href="http://www.cluecon.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.cluecon.com</a><br class="gmail_msg">
<br class="gmail_msg">
FreeSWITCH-users mailing list<br class="gmail_msg">
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" class="gmail_msg" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br class="gmail_msg">
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="gmail_msg">
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg"></blockquote></div><br class="gmail_msg"></div>
</div></div><br class="gmail_msg">_________________________________________________________________________<br class="gmail_msg">
Professional FreeSWITCH Consulting Services:<br class="gmail_msg">
<a href="mailto:consulting@freeswitch.org" class="gmail_msg" target="_blank">consulting@freeswitch.org</a><br class="gmail_msg">
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitchsolutions.com</a><br class="gmail_msg">
<br class="gmail_msg">
Official FreeSWITCH Sites<br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg">
<a href="http://confluence.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://confluence.freeswitch.org</a><br class="gmail_msg">
<a href="http://www.cluecon.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.cluecon.com</a><br class="gmail_msg">
<br class="gmail_msg">
FreeSWITCH-users mailing list<br class="gmail_msg">
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" class="gmail_msg" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br class="gmail_msg">
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="gmail_msg">
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg"></blockquote></div><br class="gmail_msg"><br clear="all" class="gmail_msg"><div class="gmail_msg"><br class="gmail_msg"></div>-- <br class="gmail_msg"><div class="m_-4516330069767154418gmail_signature gmail_msg" data-smartmail="gmail_signature">Guillermo Ruiz Camauer<br class="gmail_msg"></div>
</div>
_________________________________________________________________________<br class="gmail_msg">
Professional FreeSWITCH Consulting Services:<br class="gmail_msg">
<a href="mailto:consulting@freeswitch.org" class="gmail_msg" target="_blank">consulting@freeswitch.org</a><br class="gmail_msg">
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitchsolutions.com</a><br class="gmail_msg">
<br class="gmail_msg">
Official FreeSWITCH Sites<br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a><br class="gmail_msg">
<a href="http://confluence.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://confluence.freeswitch.org</a><br class="gmail_msg">
<a href="http://www.cluecon.com" rel="noreferrer" class="gmail_msg" target="_blank">http://www.cluecon.com</a><br class="gmail_msg">
<br class="gmail_msg">
FreeSWITCH-users mailing list<br class="gmail_msg">
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" class="gmail_msg" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br class="gmail_msg">
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="gmail_msg">
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" class="gmail_msg" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="gmail_msg">
<a href="http://www.freeswitch.org" rel="noreferrer" class="gmail_msg" target="_blank">http://www.freeswitch.org</a></blockquote></div>