<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">[master 1e6200b] FS-5074: --resolve support sqlite:// for DSNs<div><br></div><div>Please confirm this fixes the issue</div><div><br></div><div>Thanks</div><div>Mike</div><div><br><div><div>On Feb 5, 2013, at 2:33 PM, Steven Ayre &lt;<a href="mailto:steveayre@gmail.com">steveayre@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Ah I've spotted it. There's a bug in the code for detecting the old-style ODBC DSNs.<div><br></div><div><div>switch_core_sqldb.c:344 } else if ((!(i = strncasecmp(dsn, "odbc://", 7))) || strchr(dsn, ':')) {</div>


<div><br></div><div>This will match any DSN containing a ':' which obviously sqlite:// will. Therefore although the sqlite:// prefix is recognised and skipped over, that code path will never get reached.</div><div>


<br></div><div>The plain filename works because anything not odbc/pgsql is assumed to be a sqlite filename (switch_core_sqldb.c:366).</div><div><br></div><div>I've raised this in Jira:&nbsp;<a href="http://jira.freeswitch.org/browse/FS-5074">http://jira.freeswitch.org/browse/FS-5074</a></div>

<div><br></div><div>-Steve</div><div>
<br><br><div class="gmail_quote">On 5 February 2013 17:54, François Delawarde <span dir="ltr">&lt;<a href="mailto:fdelawarde@wirelessmundi.com" target="_blank">fdelawarde@wirelessmundi.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


There you go.<br>
<br>
** My script test.lua is the following one liner:<br>
local dbh = freeswitch.Dbh("<a href="sqlite:///tmp/test.db">sqlite:///tmp/test.db</a>")<br>
<br>
<br>
freeswitch@internal&gt; lua test.lua<br>
-ERR no reply<br>
<br>
2013-02-05 18:50:47.230744 [ERR] switch_odbc.c:365 STATE: IM002 CODE 0 ERROR: [unixODBC][Driver Manager]Data source name not found, and no default driver specified<br>
<br>
2013-02-05 18:50:47.230744 [CRIT] switch_core_sqldb.c:504 Failure to connect to PGSQL sqlite!<br>
2013-02-05 18:50:47.230744 [ERR] freeswitch_lua.cpp:354 Connection failed. &nbsp;DBH NOT Connected.<br>
<br>
<br>
<br>
<br>
** Now if I change test.lua to:<br>
local dbh = freeswitch.Dbh("/tmp/test.db")<br>
<br>
<br>
freeswitch@internal&gt; lua test.lua<br>
-ERR no reply<br>
<br>
<br>
No ERR or CRIT in this last one.<br>
<br>
<br>
Cheers,<br>
François.<br>
<div><br>
On Tue, 2013-02-05 at 16:42 +0000, Steven Ayre wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; FAIL =&gt; "<a href="sqlite:///tmp/test.db">sqlite:///tmp/test.db</a>" (this one should work)<br>
&gt;<br>
&gt;<br>
&gt; What error does this give?<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On 5 February 2013 16:31, François Delawarde<br>
&gt; &lt;<a href="mailto:fdelawarde@wirelessmundi.com" target="_blank">fdelawarde@wirelessmundi.com</a>&gt; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; I'm on HEAD, but I must be doing something wrong, there is no<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; apparent<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; reason from the code.<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; On Tue, 2013-02-05 at 16:05 +0000, Steven Ayre wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Honestly, I only use ODBC... Maybe someone else can shed<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; some light?<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; What version are you using?<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Steve<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; On 5 Feb 2013, at 15:42, François Delawarde<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a href="mailto:fdelawarde@wirelessmundi.com" target="_blank">fdelawarde@wirelessmundi.com</a>&gt; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; Steven, does "sqlite://" prefix work for you? Not sure if<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; it's a bug or<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; I'm doing something wrong. I tried the following from lua<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; dbh:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; FAIL =&gt; "<a href="sqlite:///tmp/test.db">sqlite:///tmp/test.db</a>" (this one should work)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; FAIL =&gt; "<a href="sqlite://tmp/test.db">sqlite://tmp/test.db</a>" (shouldn't work, but just<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; in case...)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; OK &nbsp; =&gt; "/tmp/test.db" (no prefix)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; François.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; On Tue, 2013-02-05 at 12:55 +0000, Steven Ayre wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; core: was an old prefix? I knew that change broke some<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; ODBC DSNs<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; (names without username+password, eg when they're<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; specified in<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; odbc.ini) but hadn't realised that had been broken too -<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; that needs<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; documenting as well on the Wiki I guess...<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://wiki.freeswitch.org/wiki/Release_Notes#odbc-dsn" target="_blank">http://wiki.freeswitch.org/wiki/Release_Notes#odbc-dsn</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; Just a thought for the developers, but perhaps modules<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; with odbc-dsn<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; parameters should have this renamed to dsn or something<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; now since it's<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; not odbc-specific at all any longer. Easy enough to<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; recognise both<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; 'dsn' and 'odbc-dsn' names to remain backwards compatible<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; (which I've<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; seen done with typos in config setting names in the past<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; as precedent).<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; -Steve<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; On 5 February 2013 11:03, François Delawarde<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &lt;<a href="mailto:fdelawarde@wirelessmundi.com" target="_blank">fdelawarde@wirelessmundi.com</a>&gt; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;The behavior recently changed from "core:&lt;path&gt;"<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; to<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;"sqlite://&lt;path&gt;".<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Update: I just tested and it seems that<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; "sqlite://&lt;path&gt;"<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;doesn't work,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;but as sqlite is the default, you can just omit<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; the prefix and<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;use<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;"&lt;path&gt;" to make it work.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;François.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;On Tue, 2013-02-05 at 10:37 +0000, Steven Ayre<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; 'Failure to connect to PGSQL core' happens on ODBC<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;connections, that<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; seems to be a minor bug in the error message.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; From the unixODBC error it's interpreting this as a ODBC<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;DSN. The<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; reason is the sqlite prefix is sqlite:// not core://<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; (see <a href="http://wiki.freeswitch.org/wiki/DSN" target="_blank">http://wiki.freeswitch.org/wiki/DSN</a>). You also<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; don't<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;have enough<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; slashes.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; Try:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; local dbh =<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;freeswitch.Dbh("<a href="sqlite:///usr/local/temp/database.db">sqlite:///usr/local/temp/database.db</a>");<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; (note the 3 slashes - :// is standard URI format, the<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; 3rd<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;indicates an<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; absolute path).<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; -Steve<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; On 5 February 2013 08:56, Carlo Dimaggio<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:jaasmailing@gmail.com" target="_blank">jaasmailing@gmail.com</a>&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Hi all!<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;I have a lua script in which i have a statement<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; that<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;connects<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;to a sqlite db:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;local dbh =<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;freeswitch.Dbh("core:/usr/local/temp/database.db");<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;but i receve in FS CLI this error that refers to<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; a<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Pgsql<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;instead of sqlite:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;2013-02-05 09:40:10.379612 [ERR]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; switch_odbc.c:365<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;STATE:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;IM002 CODE 0 ERROR: [unixODBC][Driver<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Manager]Data<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;source name<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;not found, and no default driver specified<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;2013-02-05 09:40:10.379612 [CRIT]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;switch_core_sqldb.c:504<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Failure to connect to PGSQL core!<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;2013-02-05 09:40:10.379612 [ERR]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;freeswitch_lua.cpp:354<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Connection failed. &nbsp;DBH NOT Connected.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;2013-02-05 09:40:10.379612 [ERR]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;freeswitch_lua.cpp:435 DBH<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;NOT Connected.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Can you help me?<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Best regards,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;_________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;FreeSWITCH-powered IP PBX: The CudaTel<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Communication<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;_________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;_________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;FreeSWITCH-powered IP PBX: The CudaTel<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Communication Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; _________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; _________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; FreeSWITCH-powered IP PBX: The CudaTel Communication<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; _________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; _________________________________________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Professional FreeSWITCH Consulting Services:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Official FreeSWITCH Sites<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; FreeSWITCH-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <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" target="_blank">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.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://wiki.freeswitch.org/" target="_blank">http://wiki.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" target="_blank">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>
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>
</div></blockquote></div><br></div></div>
_________________________________________________________________________<br>Professional FreeSWITCH Consulting Services:<br><a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>http://www.freeswitchsolutions.com<br><br>FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>http://www.cudatel.com<br><br>Official FreeSWITCH Sites<br>http://www.freeswitch.org<br>http://wiki.freeswitch.org<br>http://www.cluecon.com<br><br>FreeSWITCH-users mailing list<br>FreeSWITCH-users@lists.freeswitch.org<br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></div></body></html>