&nbsp;&nbsp;&nbsp; public void run(String sessionUuid, String args)<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;INBOUND UUID: &quot; + sessionUuid + &quot; ARGS: &quot; + args + &quot;\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; JavaSession session = null;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session = new JavaSession(sessionUuid);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(session == null) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;ERROR: session is NULL\n&quot;);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;SUCCESS creating session\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session.setAutoHangup(false);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; byte[] dtmf_buf = new byte[20];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; byte[] term_buf = new byte[4];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String raw_dnis = session.getVariable(&quot;originate_caller_id_number&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String raw_ani = session.getVariable(&quot;caller_id_number&quot;);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String leading = raw_ani.substring(0, 1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String ani = null;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(leading.startsWith(&quot;+&quot;)) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // skip first digit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ani = raw_ani.substring(1);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // capture all digits<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ani = raw_ani.substring(0);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;INBOUND ANI: 00&quot; + ani + &quot; DNIS: &quot; + raw_dnis + &quot;\n&quot;);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String destNumber = authorize(&quot;001&quot; + ani);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(destNumber == null) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // handle as non-widget call<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // collect DTMF of dial out phone number<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;playAndGetDigits called next!!!\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; int done = 0;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; do {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; dtmf_buf = new byte[20];<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; term_buf = new byte[4];<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // dial number collection<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session.playAndGetDigits(10, 20, 3, 30000, &quot;#&quot;, &quot;/usr/local/freeswitch/sounds/DialNumber.wav&quot;, &quot;/usr/local/freeswitch/sounds/NotAsDialed.wav&quot;, dtmf_buf, &quot;&quot;);<br>
<br><div class="gmail_quote">On Sun, Apr 6, 2008 at 11:05 PM, Damjan Jovanovic &lt;<a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
X-ECN Telecoms-MailScanner-Information: Contact ECN Telecoms<br>
X-ECN Telecoms-MailScanner: Found to be clean<br>
X-ECN Telecoms-MailScanner-SpamCheck: not spam, SpamAssassin (not cached,<br>
 &nbsp; &nbsp; &nbsp; &nbsp;score=-104.399, required 6, autolearn=not spam, ALL_TRUSTED -1.80,<br>
 &nbsp; &nbsp; &nbsp; &nbsp;BAYES_00 -2.60, USER_IN_WHITELIST -100.00)<br>
X-ECN Telecoms-MailScanner-From: <a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com</a><br>
X-Spam-Status: No<br>
<br>
Calling the playAndGetDigits() function is a bit obscure in Java, some<br>
args are input/output parameters. Post the code so I can see how you&#39;re<br>
trying to call it.<br>
<br>
Bye<br>
<font color="#888888">Damjan<br>
</font><div><div></div><div class="Wj3C7c"><br>
<br>
On Sun, 2008-04-06 at 22:46 -0700, jonathan augenstine wrote:<br>
&gt; Here is the bt full backtrace:<br>
&gt;<br>
&gt; (gdb) bt full<br>
&gt; #0 &nbsp;0x0088b402 in __kernel_vsyscall ()<br>
&gt; No symbol table info available.<br>
&gt; #1 &nbsp;0x00361fa0 in raise () from /lib/libc.so.6<br>
&gt; No symbol table info available.<br>
&gt; #2 &nbsp;0x003638b1 in abort () from /lib/libc.so.6<br>
&gt; No symbol table info available.<br>
&gt; #3 &nbsp;0x00398ebb in __libc_message () from /lib/libc.so.6<br>
&gt; No symbol table info available.<br>
&gt; #4 &nbsp;0x003a0f41 in _int_free () from /lib/libc.so.6<br>
&gt; No symbol table info available.<br>
&gt; #5 &nbsp;0x003a4580 in free () from /lib/libc.so.6<br>
&gt; No symbol table info available.<br>
&gt; #6 &nbsp;0x011e747c in os::free ()<br>
&gt; from /usr/java/jdk1.5.0_12/jre/lib/i386/client/libjvm.so<br>
&gt; No symbol table info available.<br>
&gt; #7 &nbsp;0x010fd233 in jni_ReleaseByteArrayElements ()<br>
&gt; from /usr/java/jdk1.5.0_12/jre/lib/i386/client/libjvm.so<br>
&gt; No symbol table info available.<br>
&gt; #8 &nbsp;0x009c1f5e in<br>
&gt; Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1playAndGetDigits<br>
&gt; (jenv=0xad91cf90, jcls=0x6ce587c,<br>
&gt; &nbsp; &nbsp; jarg1=2949394128, jarg1_=0x6ce58a8, jarg2=10, jarg3=20, jarg4=3,<br>
&gt; jarg5=30000, jarg6=0x6ce5894, jarg7=0x6ce5890,<br>
&gt; &nbsp; &nbsp; jarg8=0x6ce588c, jarg9=0x6ce5888, jarg10=0x6ce5884)<br>
&gt; at /usr/java/jdk1.5.0_12/include/jni.h:1665<br>
&gt; &nbsp; &nbsp; jresult = &lt;value optimized out&gt;<br>
&gt; &nbsp; &nbsp; arg6 = 0xb291c7a0 &quot;#&quot;<br>
&gt; &nbsp; &nbsp; arg7 = 0xb292d770 &quot;/usr/local/freeswitch/sounds/DialNumber.wav&quot;<br>
&gt; &nbsp; &nbsp; arg8 = 0xb292dab8 &quot;/usr/local/freeswitch/sounds/NotAsDialed.wav&quot;<br>
&gt; &nbsp; &nbsp; arg10 = 0xb2915838 &quot;&quot;<br>
&gt; &nbsp; &nbsp; result = 1<br>
&gt; #9 &nbsp;0x02d562dd in ?? ()<br>
&gt; No symbol table info available.<br>
&gt; #10 0xad91cf90 in ?? ()<br>
&gt; No symbol table info available.<br>
&gt; #11 0x06ce587c in ?? ()<br>
&gt; No symbol table info available.<br>
&gt; #12 0xafcc2ed0 in ?? ()<br>
&gt; No symbol table info available.<br>
&gt; #13 0x00000000 in ?? ()<br>
&gt; No symbol table info available.<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Apr 4, 2008 at 9:59 PM, Michael Jerris &lt;<a href="mailto:mike@jerris.com">mike@jerris.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Can you disable crash protection and get a real backtrace of<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; this?<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Mike<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; On Apr 5, 2008, at 12:19 AM, jonathan augenstine wrote:<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Damjan,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; OK, the mod_java initialization problem is resolved in the<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; latest<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; version of the trunk. &nbsp;I am now back to the initial problem<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; I was<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; hoping this version would solve. &nbsp;When I call<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; playAndGetDigits() it<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; crashes Freeswitch. &nbsp;The console dump from the<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; playAndGetDigits call<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; to the crash is pasted below. &nbsp;What would you suggest is the<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; next<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; step to diagnose and fix this issue?<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Jonathan<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Freeswitch console output:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 2008-04-04 22:39:50 [NOTICE] switch_cpp.cpp:509<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; console_log()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; playAndGetDigits called next!!!<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 2008-04-04 22:39:50 [DEBUG] switch_cpp.cpp:154 execute()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; CoreSession::execute. &nbsp;app: sleep data:500<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 2008-04-04 22:39:50 [DEBUG] switch_ivr_play_say.c:1225<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; switch_play_and_get_digits()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; switch_play_and_get_digits(session, 10,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 20, 3, 30000,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; #, /usr/local/freeswitch/sounds/DialNumber.wav, /usr/<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; local/freeswitch/sounds/NotAsDialed.wav, digit_buffer, 128,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; XXXXXXXXXX)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; *** glibc detected *** ./freeswitch: free(): invalid<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; pointer:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 0x08cf29d0 ***<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; ======= Backtrace: =========<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6[0x3a0f41]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6(cfree+0x90)[0x3a4580]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6[0x3bae6f]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6(tzset+0x3d)[0x3bb77d]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6(strftime_l+0x46)[0x3c0006]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /lib/libc.so.6(strftime+0x3f)[0x3bff5f]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/lib/libfreeswitch.so.1(apr_strftime<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; +0x85)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; [0x19d395]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/lib/libfreeswitch.so.1(switch_strftime<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; +0x39)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; [0x13a139]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/lib/libfreeswitch.so.1(switch_log_printf+0x126)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; [0x17f1f6]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/lib/libfreeswitch.so.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 1(switch_play_and_get_digits+0x192)[0x175ad2]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/lib/libfreeswitch.so.<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 1(_ZN11CoreSession16playAndGetDigitsEiiiiPcS0_S0_S0_S0_<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; +0xe2)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; [0x188242]<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; /usr/local/freeswitch/mod/<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; mod_java<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; .so<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; (Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1playAndGetDigits<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; +0x15d)[0xe46f3d]<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; _______________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Freeswitch-dev mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:Freeswitch-dev@lists.freeswitch.org">Freeswitch-dev@lists.freeswitch.org</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</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; Freeswitch-dev mailing list<br>
&gt; <a href="mailto:Freeswitch-dev@lists.freeswitch.org">Freeswitch-dev@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
_______________________________________________<br>
Freeswitch-dev mailing list<br>
<a href="mailto:Freeswitch-dev@lists.freeswitch.org">Freeswitch-dev@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br>