<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Nothing i can see wrong in the makefile. We have modules that use C++ that work fine, although i have never seen anyone refer to something called "advanced C++" so not sure exactly what that is.<div class=""><br class=""></div><div class=""><br class=""><div class=""><div><blockquote type="cite" class=""><div class="">On Mar 9, 2016, at 6:47 PM, Chris Mandra <<a href="mailto:mandra@gmail.com" class="">mandra@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Hi Michael,<br class="">it happens with other things too not just boost. things that aren't shared libraries. I'm wondering if this is bc of C++ or my makefile. Am I doing something obviously wrong here as far as freeswitch and my makefile is concerned? Is writing the module in advanced C++ an issue?:<div class=""><br class=""></div><div class=""><p class=""><span class="">****************</span></p><p class=""><span class="">include $(BASE)/build/modmake.rules</span></p><p class=""><span class="">LOCAL_CFLAGS=-I./include -std=c++0x -DBUILD_VERSION=\"$(BUILD_VERSION)\" -Iinclude$(LOCAL_CFLAGS_$(ARCH)) -fpermissive</span></p><p class=""><span class="">LOCAL_LDFLAGS+=</span></p><p class="">strategy.o: strategy.cpp<br class=""></p><p class=""><span class="">ladspa_strategy.o: ladspa_strategy.cpp</span></p><p class=""><span class="">dsp_strategy.o: dsp_strategy.cpp </span></p><p class=""><span class="">param_strategy.o: param_strategy.cpp</span></p><p class=""><span class="">load.o: load.cpp</span></p><p class=""><span class="">docopt.o: docopt.cpp</span></p><p class=""><span class="">LOCAL_OBJS+= ladspa_strategy.o strategy.o dsp_strategy.o load.o param_strategy.o docopt.o</span></p><p class=""><span class="">local_depend: $(LOCAL_OBJS)</span></p><p class=""><span class="">ARCH := $(shell getconf LONG_BIT)</span></p><p class="">***************</p><div class="">If I load the module - even if I don't invoke the code - it doesn't unload. Having to restart FS each time I'm trying something is taking a lot of time. </div><div class=""><br class=""></div><div class="">thanks,</div><div class="">chris</div><div class=""><br class=""></div><div class=""><br class="">On Wednesday, March 9, 2016, Michael Jerris <<a href="mailto:mike@jerris.com" target="_blank" class="">mike@jerris.com</a>> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word" class="">sounds like a bug in boost or some sort of misuse.. <div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Mar 5, 2016, at 8:46 AM, Chris Mandra <<a class="">mandra@gmail.com</a>> wrote:</div><br class=""><div class=""><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important" class="">Hi guys. After much slething I figured it out: this line:</span><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" class=""><br class="">std::string const& s = po::validators::get_single_string(values);<div class=""><br class=""></div><div class="">this is something from boost::program_options<br class=""></div><div class=""><br class=""></div><div class="">it throws an exception if it is false</div><div class=""><br class=""></div><div class="">and for some reason if that line is in my code, even if it's not invoked, causes the library to not <span class=""></span>unload. Do you know why this might be? Is there some flag I should throw in my makefile to allow the boost library to be used in a way that's more compatible with free switch?<br class=""></div><div class="">Thanks, <br class=""></div><div class="">Chris</div><div class=""><br class="">On Friday, March 4, 2016, Nathan Neulinger <<a class="">nneul@mst.edu</a>> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">No, what I mean was I don't see the symptom unloading various modules on my system. You should try the same (modules<br class="">OTHER than yours) to see if the symtom is general or specific to your code.<br class=""><br class="">-- Nathan<br class=""><br class="">On 03/04/2016 01:01 PM, Chris Mandra wrote:<br class="">> Hi Nathan -<br class="">> this is a module I'm working on, that's why it's not on your system. I know the problem is specific to my module, I'm<br class="">> trying to figure out why.<br class="">> freeswitch reports module unloaded, but lsof reports that fs is still talking to it, meaning freeswitch still reports it<br class="">> as open file.<br class="">><br class="">> chris<br class="">><br class="">><br class="">> On Fri, Mar 4, 2016 at 1:15 PM, Nathan Neulinger <<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>> wrote:<br class="">><br class="">> I certainly don't see it with other modules on my system.<br class="">><br class="">> Are you able to test it with other modules on yours? i.e. try unloading something like mod_opus (unless you are using<br class="">> it). And see if the same behavior exists. If it doesn't, problem is specific to the module being unloaded.<br class="">><br class="">> -- Nathan<br class="">><br class="">> On 03/04/2016 12:10 PM, Chris Mandra wrote:<br class="">> > It seems to me that the problem is that the library is not being unloaded, or it's not properly loaded or both?<br class="">> ><br class="">> > Am I the only one running into this sort of thing?<br class="">> ><br class="">> > thanks for all your help,<br class="">> > chris<br class="">> ><br class="">> > On Fri, Mar 4, 2016 at 10:49 AM, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><mailto:<a class="">mandra@gmail.com</a>>>> wrote:<br class="">> ><br class="">> > freeswitc 10760 freeswitch DEL REG 8,1 157457 /usr/local/freeswitch/mod/mod_skeleton.so<br class="">> ><br class="">> > after<br class="">> ><br class="">> > freeswitc 10760 freeswitch DEL REG 8,1 157457 /usr/local/freeswitch/mod/mod_skeleton.so<br class="">> ><br class="">> > both the same after loading and unloading<br class="">> ><br class="">> ><br class="">> > On Fri, Mar 4, 2016 at 9:16 AM, Nathan Neulinger <<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>>> wrote:<br class="">> ><br class="">> > If you do the lsof before and then after the unload, does the lsof still show the same filename as opened?<br class="">> ><br class="">> > -- Nathan<br class="">> ><br class="">> > On 03/04/2016 07:53 AM, Chris Mandra wrote:<br class="">> > > And I want to stress, that I delete the file from disc unload the module, reload the module and it says it loads, so<br class="">> > > this doesn't make sense to me…<br class="">> > ><br class="">> > > On Friday, March 4, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>><br class="">> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>>>> wrote:<br class="">> > ><br class="">> > > Nevermind.<br class="">> > > It's still not working.<br class="">> > ><br class="">> > > Couple of questions:<br class="">> > > I'm writing this I'm c++. Could that be causing problems?<br class="">> > > Here's my makefile. Is anything obvs causing trouble here:<br class="">> > ><br class="">> > > BASE=../../../..<br class="">> > > include $(BASE)/build/modmake.rules<br class="">> > > LOCAL_CFLAGS=-I./include -std=c++0x -DBUILD_VERSION=\"$(BUILD_VERSION)\" -Iinclude$(LOCAL_CFLAGS_$(ARCH)) -fpermissive<br class="">> > > LOCAL_LDFLAGS+=-lboost_program_options<br class="">> > > strategy.o: strategy.cpp<br class="">> > > ladspa_strategy.o: ladspa_strategy.cpp<br class="">> > > dsp_strategy.o: dsp_strategy.cpp<br class="">> > > param_strategy.o: param_strategy.cpp<br class="">> > > load.o: load.cpp<br class="">> > > tokenizer.o: tokenizer.cpp<br class="">> > > validators.o: validators.cpp<br class="">> > > LOCAL_OBJS+=ladspa_strategy.o strategy.o dsp_strategy.o load.o tokenizer.o param_strategy.o<br class="">> > > local_depend: $(LOCAL_OBJS)<br class="">> > ><br class="">> > > Thanks, Chris<br class="">> > ><br class="">> > ><br class="">> > ><br class="">> > > On Friday, March 4, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>><br class="">> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>> <javascript:_e(%7B%7D,'cvml','<a class="">mandra@gmail.com</a><br class="">> <mailto:<a class="">mandra@gmail.com</a>><br class="">> > <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>>');>> wrote:<br class="">> > ><br class="">> > > So here's another wrinkle. I've removed my module from the system, recreated it fresh with a new filename (and<br class="">> > > internal names where apropos) and it's reloading is working properly now. Same code. How is this possible?<br class="">> > > Thanks,<br class="">> > > Chris<br class="">> > ><br class="">> > > On Thursday, March 3, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><mailto:<a class="">mandra@gmail.com</a>>>> wrote:<br class="">> > ><br class="">> > > Does that make anything come to mind?<br class="">> > ><br class="">> > > On Wednesday, March 2, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><mailto:<a class="">mandra@gmail.com</a>>>> wrote:<br class="">> > ><br class="">> > > 1.6<br class="">> > ><br class="">> > > On Wed, Mar 2, 2016 at 11:57 AM, Ken Rice <<a class="">krice@freeswitch.org</a><span class=""> </span><mailto:<a class="">krice@freeswitch.org</a>> <mailto:<a class="">krice@freeswitch.org</a><mailto:<a class="">krice@freeswitch.org</a>>>> wrote:<br class="">> > ><br class="">> > > What version of FreeSWITCH are you building this against? ____<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > *From:*<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>><br class="">> <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>>><br class="">> > > [mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><br class="">> <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>> <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><br class="">> <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>>>] *On Behalf<br class="">> > Of *Chris Mandra<br class="">> > > *Sent:* Wednesday, March 2, 2016 10:37 AM<br class="">> > > *To:* FreeSWITCH Users Help <<a class="">freeswitch-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">freeswitch-users@lists.freeswitch.org</a>> <mailto:<a class="">freeswitch-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">freeswitch-users@lists.freeswitch.org</a>>>><br class="">> > > *Subject:* [Freeswitch-users] module question____<br class="">> > ><br class="">> > > __ __<br class="">> > ><br class="">> > > I unload, wipe the file reload and it says it's reloaded<br class="">> > > This makes no sense<br class="">> > > On Wednesday, March 2, 2016, Nathan Neulinger <<a class="">nneul@mst.edu</a><br class="">> <mailto:<a class="">nneul@mst.edu</a>> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>>><br class="">> > wrote:____<br class="">> > ><br class="">> > > I think he said earlier that if he shuts down completely, it works fine, but he's<br class="">> > wanting to be<br class="">> > > able to reload on the<br class="">> > > fly to test new changes.<br class="">> > ><br class="">> > > -- Nathan<br class="">> > ><br class="">> > > On 03/02/2016 08:59 AM, Ken Rice wrote:<br class="">> > > > Have you completely shut FreeSwitch down? There is a chance when you unload a<br class="">> > module, that<br class="">> > > module doesn’t actually<br class="">> > > > unload, its still loaded, just deactivated. You can easily verify this by making<br class="">> > sure the .so<br class="">> > > for the module is gone,<br class="">> > > > and restarting FreeSWITCH completely.<br class="">> > > ><br class="">> > > > *From:*<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>><br class="">> > <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>>><br class="">> > > [mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><br class="">> <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>><br class="">> > <mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users-bounces@lists.freeswitch.org</a>>>] *On Behalf<br class="">> > > > Of *Chris Mandra<br class="">> > > > *Sent:* Wednesday, March 2, 2016 8:30 AM<br class="">> > > > *To:* FreeSWITCH Users Help <<a class="">freeswitch-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users@lists.freeswitch.org</a>><br class="">> > <mailto:<a class="">freeswitch-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">freeswitch-users@lists.freeswitch.org</a>>>><br class="">> > > > *Subject:* Re: [Freeswitch-users] module question<br class="">> > > ><br class="">> > > > No, not chroot'd. I'm compiling a bunch of my own classes, could be my makefile?<br class="">> > > ><br class="">> > > > On Wednesday, March 2, 2016, Nathan Neulinger <<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>><br class="">> > <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>> <mailto:<a class="">nneul@mst.edu</a><br class="">> <mailto:<a class="">nneul@mst.edu</a>>>>> wrote:<br class="">> > > ><br class="">> > > > Is there any chance you are running freeswitch chroot'd?<br class="">> > > ><br class="">> > > > On 03/02/2016 06:14 AM, Chris Mandra wrote:<br class="">> > > > > Thank you for writing Stephen, I've already tried that, and that's how I<br class="">> > know it's<br class="">> > > reporting what it's reporting<br class="">> > > > and how<br class="">> > > > > it doesn't make any sense.<br class="">> > > > ><br class="">> > > > > Fs is reporting this: /usr/local/freeswitch/mod/mod_test_dsp.so<br class="">> > > > ><br class="">> > > > > however that file doesn’t even exist<br class="">> > > > ><br class="">> > > > > and yet it still says it’s loading it<br class="">> > > > ><br class="">> > > > > how is that possible?<br class="">> > > > ><br class="">> > > > ><br class="">> > > > > On Wednesday, March 2, 2016, Steven Ayre <<a class="">steveayre@gmail.com</a><span class=""> </span><mailto:<a class="">steveayre@gmail.com</a>><br class="">> > <mailto:<a class="">steveayre@gmail.com</a><span class=""> </span><mailto:<a class="">steveayre@gmail.com</a>>> <javascript:;><br class="">> > > <mailto:<a class="">steveayre@gmail.com</a><span class=""> </span><mailto:<a class="">steveayre@gmail.com</a>><br class="">> <mailto:<a class="">steveayre@gmail.com</a><span class=""> </span><mailto:<a class="">steveayre@gmail.com</a>>><br class="">> > > > <javascript:;>>> wrote:<br class="">> > > > ><br class="">> > > > > When the file is loaded use find FreeSWITCH's PID and then use the<br class="">> > 'lsof -p $PID |<br class="">> > > grep mod_' command...<br class="">> > > > it'll show<br class="">> > > > > you a list of the modules FreeSWITCH currently has loaded. See if it's<br class="">> > loading<br class="">> > > from a different path that way.<br class="">> > > > ><br class="">> > > > > On 2 March 2016 at 02:52, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>><br class="">> > <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>> <javascript:;><br class="">> > > > <javascript:_e(%7B%7D,'cvml','<a class="">mandra@gmail.com</a><br class="">> <mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>><br class="">> > <javascript:;>');>> wrote:<br class="">> > > > ><br class="">> > > > > Any other ideas?<br class="">> > > > ><br class="">> > > > ><br class="">> > > > > On Tuesday, March 1, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>><br class="">> > <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>> <javascript:;><br class="">> > > > <javascript:_e(%7B%7D,'cvml','<a class="">mandra@gmail.com</a><br class="">> <mailto:<a class="">mandra@gmail.com</a>> <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>><br class="">> > <javascript:;>');>> wrote:<br class="">> > > > ><br class="">> > > > > Thanks for your responses so far guys. Italo, its only built<br class="">> > from source<br class="">> > > so I don't think that's the<br class="">> > > > issue.<br class="">> > > > > This is baffling. I've tried it in more one machine, same result.<br class="">> > > > ><br class="">> > > > > On Tuesday, March 1, 2016, Chris Mandra <<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>><br class="">> > <mailto:<a class="">mandra@gmail.com</a><span class=""> </span><mailto:<a class="">mandra@gmail.com</a>>> <javascript:;>><br class="">> > > wrote:<br class="">> > > > ><br class="">> > > > > So, FS is reporting<br class="">> > > > ><br class="">> > > > > reporting this: /usr/local/freeswitch/mod/mod_test_dsp.so<br class="">> > > > ><br class="">> > > > > however that file doesn’t even exist<br class="">> > > > ><br class="">> > > > > and yet it still says it’s loading it<br class="">> > > > ><br class="">> > > > > how is that possible?<br class="">> > > > ><br class="">> > > > ><br class="">> > > > > On Tue, Mar 1, 2016 at 12:34 PM, Nathan Neulinger<br class="">> > <<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>><br class="">> > > <javascript:;>> wrote:<br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > On 03/01/2016 09:41 AM, Chris Mandra wrote:<br class="">> > > > > > thanks for the reply Nathan - this is really weird:<br class="">> > > > > ><br class="">> > > > > > after i remove the .so files (and make sure they're<br class="">> > gone from my<br class="">> > > disk) it still reports it<br class="">> > > > successfully reloads<br class="">> > > > > ><br class="">> > > > ><br class="">> > > > > Ok, so issue 'lsof -p PID_OF_FREESWITCH' and look for<br class="">> > the path to<br class="">> > > the .so file that it<br class="">> > > > loaded. It's<br class="">> > > > > likely pulling it in<br class="">> > > > > from a different location.<br class="">> > > > ><br class="">> > > > > Or 'strace -v -f -s 500 -o /tmp/trc -p<br class="">> > PID_OF_FREESWITCH', then<br class="">> > > issue the reload, then kill the<br class="">> > > > > strace and look for what<br class="">> > > > > file/path it searched/etc.<br class="">> > > > ><br class="">> > > > > -- Nathan<br class="">> > > > ><br class="">> > > > ><br class="">> > ------------------------------------------------------------<br class="">> > > > > Nathan Neulinger<span class=""> </span><a class="">nneul@mst.edu</a><br class="">> <mailto:<a class="">nneul@mst.edu</a>> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>><br class="">> > <javascript:;><br class="">> > > > > Missouri S&T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank" class="">(573) 612-1412</a> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> > <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> > > <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> > > > > System Administrator - Architect<br class="">> > > > ><br class="">> > > > ><br class="">> > > _________________________________________________________________________<br class="">> > > > > Professional FreeSWITCH Consulting Services:<br class="">> > > > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>><br class="">> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>> <javascript:;><br class="">> > > > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > > > ><br class="">> > > > > Official FreeSWITCH Sites<br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > > > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > > > ><br class="">> > > > > FreeSWITCH-users mailing list<br class="">> > > > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>> <javascript:;><br class="">> > > > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > > ><br class="">> > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > --<br class="">> > > > > mandra<br class="">> > > > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>><br class="">> > <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > --<br class="">> > > > > mandra<br class="">> > > > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>><br class="">> > <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > --<br class="">> > > > > mandra<br class="">> > > > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>><br class="">> > <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>><br class="">> > > > ><br class="">> > > > > _________________________________________________________________________<br class="">> > > > > Professional FreeSWITCH Consulting Services:<br class="">> > > > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>><br class="">> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>> <javascript:;><br class="">> > > <javascript:_e(%7B%7D,'cvml','<a class="">consulting@freeswitch.org</a><br class="">> <mailto:<a class="">consulting@freeswitch.org</a>> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>><br class="">> <javascript:;>');><br class="">> > > > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > > > ><br class="">> > > > > Official FreeSWITCH Sites<br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > > > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > > > ><br class="">> > > > > FreeSWITCH-users mailing list<br class="">> > > > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>> <javascript:;><br class="">> > > > <javascript:_e(%7B%7D,'cvml','<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>> <javascript:;>');><br class="">> > > > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > --<br class="">> > > > > mandra<br class="">> > > > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>><br class="">> > > > ><br class="">> > > > ><br class="">> > > > > _________________________________________________________________________<br class="">> > > > > Professional FreeSWITCH Consulting Services:<br class="">> > > > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>><br class="">> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>> <javascript:;><br class="">> > > > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > > > ><br class="">> > > > > Official FreeSWITCH Sites<br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > > > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > > > ><br class="">> > > > > FreeSWITCH-users mailing list<br class="">> > > > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>> <javascript:;><br class="">> > > > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > > ><br class="">> > > ><br class="">> > > > --<br class="">> > > > ------------------------------------------------------------<br class="">> > > > Nathan<span class=""> </span><a class="">Neulingernneul@mst.edu</a><span class=""> </span><mailto:<a class="">Neulingernneul@mst.edu</a>><br class="">> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>> <javascript:;><br class="">> > > > Missouri S&T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank" class="">(573) 612-1412</a><br class="">> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> > > > System Administrator - Architect<br class="">> > > ><br class="">> > > > _________________________________________________________________________<br class="">> > > > Professional FreeSWITCH Consulting Services:<br class="">> > > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>><br class="">> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>> <javascript:;><br class="">> > > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > > ><br class="">> > > > Official FreeSWITCH Sites<br class="">> > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > > ><br class="">> > > > FreeSWITCH-users mailing list<br class="">> > > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>> <javascript:;><br class="">> > > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > ><br class="">> > > ><br class="">> > > ><br class="">> > > > --<br class="">> > > > mandra<br class="">> > > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>><br class="">> > > ><br class="">> > > ><br class="">> > > ><br class="">> > > > _________________________________________________________________________<br class="">> > > > Professional FreeSWITCH Consulting Services:<br class="">> > > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>><br class="">> <mailto:<a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>>><br class="">> > > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > > ><br class="">> > > > Official FreeSWITCH Sites<br class="">> > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > > ><br class="">> > > > FreeSWITCH-users mailing list<br class="">> > > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>><br class="">> > > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > > ><br class="">> > ><br class="">> > > --<br class="">> > > ------------------------------------------------------------<br class="">> > > Nathan<span class=""> </span><a class="">Neulingernneul@mst.edu</a><span class=""> </span><mailto:<a class="">Neulingernneul@mst.edu</a>><br class="">> <mailto:<a class="">nneul@mst.edu</a><span class=""> </span><mailto:<a class="">nneul@mst.edu</a>>><br class="">> > > Missouri S&T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank" class="">(573) 612-1412</a> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>> <<a href="tel:%28573%29%20612-1412" target="_blank" class="">tel:%28573%29%20612-1412</a>><br class="">> > > System Administrator - Architect<br class="">> > ><br class="">> > > _________________________________________________________________________<br class="">> > > Professional FreeSWITCH Consulting Services:<br class="">> > ><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>> <mailto:<a class="">consulting@freeswitch.org</a><br class="">> <mailto:<a class="">consulting@freeswitch.org</a>>><br class="">> > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > ><br class="">> > > Official FreeSWITCH Sites<br class="">> > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > ><br class="">> > > FreeSWITCH-users mailing list<br class="">> > ><a class="">FreeSWITCH-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>><br class="">> > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > ><a href="http://www.freeswitch.org____/" target="_blank" class="">http://www.freeswitch.org____</a><br class="">> > ><br class="">> > ><br class="">> > ><br class="">> > > --<br class="">> > > mandra<br class="">> > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>><br class="">> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>>>____<br class="">> > ><br class="">> > ><br class="">> > > _________________________________________________________________________<br class="">> > > Professional FreeSWITCH Consulting Services:<br class="">> > ><span class=""> </span><a class="">consulting@freeswitch.org</a><span class=""> </span><mailto:<a class="">consulting@freeswitch.org</a>> <mailto:<a class="">consulting@freeswitch.org</a><br class="">> <mailto:<a class="">consulting@freeswitch.org</a>>><br class="">> > ><a href="http://www.freeswitchsolutions.com/" target="_blank" class="">http://www.freeswitchsolutions.com</a><br class="">> > ><br class="">> > > Official FreeSWITCH Sites<br class="">> > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > ><a href="http://confluence.freeswitch.org/" target="_blank" class="">http://confluence.freeswitch.org</a><br class="">> > ><a href="http://www.cluecon.com/" target="_blank" class="">http://www.cluecon.com</a><br class="">> > ><br class="">> > > FreeSWITCH-users mailing list<br class="">> > ><span class=""> </span><a class="">FreeSWITCH-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>><br class="">> <mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a><span class=""> </span><mailto:<a class="">FreeSWITCH-users@lists.freeswitch.org</a>>><br class="">> > ><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br class="">> > > UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" class="">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br class="">> > ><a href="http://www.freeswitch.org/" target="_blank" class="">http://www.freeswitch.org</a><br class="">> > ><br class="">> > ><br class="">> > ><br class="">> > ><br class="">> > > --<br class="">> > > mandra<br class="">> > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>>><br class="">> > ><br class="">> > ><br class="">> > ><br class="">> > > --<br class="">> > > mandra<br class="">> > > > > --<br class="">> > > mandra<br class="">> > > c:<a href="tel:410.258.5281" value="+14102585281" target="_blank" class="">410.258.5281</a> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a>> <<a href="tel:410.258.5281" target="_blank" class="">tel:410.258.5281</a><span class=""> </span><<a href="tel:410.2" target="_blank" class="">tel:410.2</a>> > ><span class=""> </span><a class=""></a>> <mailto:<a class=""></a>> <mailto:<a class=""></a>> > > > ></blockquote></div></div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" class=""><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" class=""></div></blockquote></div></div></div></blockquote>
</div></div></div>
_________________________________________________________________________<br class="">Professional FreeSWITCH Consulting Services: <br class=""><a href="mailto:consulting@freeswitch.org" class="">consulting@freeswitch.org</a><br class="">http://www.freeswitchsolutions.com<br class=""><br class="">Official FreeSWITCH Sites<br class="">http://www.freeswitch.org<br class="">http://confluence.freeswitch.org<br class="">http://www.cluecon.com<br class=""><br class="">FreeSWITCH-users mailing list<br class="">FreeSWITCH-users@lists.freeswitch.org<br class="">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br class="">UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br class="">http://www.freeswitch.org</div></blockquote></div><br class=""></div></div></body></html>