How about writing up a minimal test script that is open source that demonstrates the symptom? <br>-MC<br><br><div class="gmail_quote">On Mon, May 17, 2010 at 10:30 PM, Bob Coleman <span dir="ltr"><<a href="mailto:bobc@devassert.com">bobc@devassert.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">It is a custom written listener in c# that allows using asterisk fast<br>
agi(hopefully never needed :-) ) or freeswitch esl for the same<br>
backend ivr application.<br>
<br>
A little bit hard to post that up, as it is not open source.<br>
<br>
I could email you off list a sample app, that does enough to demonstrate etc.<br>
<div><div></div><div class="h5"><br>
On Tue, May 18, 2010 at 4:07 PM, Michael S Collins <<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>> wrote:<br>
> And what is listening on port 4573? I'd like to see the program that<br>
> is talking to the event socket.<br>
> -MC<br>
><br>
> Sent from my iPhone<br>
><br>
> On May 17, 2010, at 8:02 PM, Bob Coleman <<a href="mailto:bobc@devassert.com">bobc@devassert.com</a>> wrote:<br>
><br>
>> The setup is simple so will include it.<br>
>><br>
>> I am running 1.6 downloaded as source and compiled in VS2008, havent<br>
>> tested against the latest, as occasionally there are compiled problems<br>
>> with trunk.<br>
>><br>
>> Use a stock install, no changes, with this added as a dialplan.<br>
>><br>
>> <include><br>
>> <extension name="ivr_805"><br>
>> <condition field="destination_number" expression="^805$"><br>
>> <action application="set" data="instant_ringback=true"/><br>
>> <action application="ring_ready" /><br>
>> <action application="socket" data="<a href="http://127.0.0.1:4573" target="_blank">127.0.0.1:4573</a> full"/><br>
>> </condition><br>
>> </extension><br>
>> </include><br>
>><br>
>> Running the compiled freeswitch exe I type the following in the<br>
>> console window<br>
>><br>
>> originate sofia/gateway/<mygateway>/<my phone> 805<br>
>><br>
>> That seems to execute as async after transfering to 805, although<br>
>> based on what Anthony said I might be wrong.<br>
>><br>
>> If you use the following it behaves as normal ie. sync mode after<br>
>> transfering to 805<br>
>><br>
>> originate {ignore_early_media=true}sofia/gateway/<mygateway>/<my<br>
>> phone> 805<br>
>><br>
>> Thanks<br>
>><br>
>> Bob<br>
>><br>
>><br>
>> On Tue, May 18, 2010 at 11:45 AM, Michael Collins<br>
>> <<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>> wrote:<br>
>>> I would like to confirm this behavior on a my system. Can you whip<br>
>>> up a<br>
>>> minimal set of configs to reproduce this? Put it on <a href="http://pastebin.freeswitch.org" target="_blank">pastebin.freeswitch.org</a><br>
>>> .<br>
>>> We'll see if we can reproduce. Also, please confirm that you are<br>
>>> running the<br>
>>> latest git-head so that we are doing apples-to-apples comparison.<br>
>>><br>
>>> Thanks,<br>
>>> MC<br>
>>><br>
>>> On Mon, May 17, 2010 at 3:26 PM, Bob Coleman <<a href="mailto:bobc@devassert.com">bobc@devassert.com</a>><br>
>>> wrote:<br>
>>>><br>
>>>> Ok, will check that.<br>
>>>><br>
>>>> I subscribe to the call answered event and wait for that before<br>
>>>> doing<br>
>>>> ivr things, I play a prompt then go to get a key response and it<br>
>>>> just<br>
>>>> skips straight past the message sent, no timeout or anything, and<br>
>>>> obviously not waiting for the user. The user presses a key and it<br>
>>>> doesnt go anywhere due to the program having completed.<br>
>>>><br>
>>>> On Tue, May 18, 2010 at 10:18 AM, Anthony Minessale<br>
>>>> <<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>> wrote:<br>
>>>>> that does not mean if you are in sync mode or async, the reply on<br>
>>>>> the<br>
>>>>> event<br>
>>>>> socket initial message after you enter connect does.<br>
>>>>> If you are doing ivr type things before you have media<br>
>>>>> established its<br>
>>>>> possible it's simply failing.<br>
>>>>><br>
>>>>> On Mon, May 17, 2010 at 4:53 PM, Bob Coleman <<a href="mailto:bobc@devassert.com">bobc@devassert.com</a>><br>
>>>>> wrote:<br>
>>>>>><br>
>>>>>> I tried specifying async full to confirm it was giving me the same<br>
>>>>>> result, and it does.<br>
>>>>>><br>
>>>>>> I put break points into our code where it sends a message to fs,<br>
>>>>>> in<br>
>>>>>> sync mode it waits for the timeout or until the user presses a<br>
>>>>>> key,<br>
>>>>>> but in async mode it just returns as expected, immediately.<br>
>>>>>><br>
>>>>>> I expected it to be in sync mode, as all our inbound calls come<br>
>>>>>> thru<br>
>>>>>> in this fashion, and work fine.<br>
>>>>>><br>
>>>>>> If ignore_early_media=true is used for the originate it obeys the<br>
>>>>>> dialplan, and operates in sync mode.<br>
>>>>>><br>
>>>>>> On Tue, May 18, 2010 at 9:33 AM, Anthony Minessale<br>
>>>>>> <<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>> wrote:<br>
>>>>>>> try actually specifying sync full not just omitting it.<br>
>>>>>>> how are you determining that you are ending up in async mode?<br>
>>>>>>><br>
>>>>>>> On Mon, May 17, 2010 at 4:15 PM, Bob Coleman <<a href="mailto:bobc@devassert.com">bobc@devassert.com</a>><br>
>>>>>>> wrote:<br>
>>>>>>>><br>
>>>>>>>> Sorry guys. I might not understand myself.<br>
>>>>>>>><br>
>>>>>>>> The scenario is I want to make an outbound call(via an inbound<br>
>>>>>>>> socket)<br>
>>>>>>>> and connect it back to an outbound socket for processing.<br>
>>>>>>>><br>
>>>>>>>> So to test this, I typed into the FreeSWITCH console the<br>
>>>>>>>> originate<br>
>>>>>>>> command, just like I would have via the inbound socket. and<br>
>>>>>>>> was able<br>
>>>>>>>> to make a call to a mobile phone, and have it connect back to an<br>
>>>>>>>> outbound socket, but to my surprise it was now in async mode.<br>
>>>>>>>> I had<br>
>>>>>>>> written the outbound socket to be sync, and there was no async<br>
>>>>>>>> command<br>
>>>>>>>> in the dialplan that handled the extension I had transfered<br>
>>>>>>>> the call<br>
>>>>>>>> too. Once the call is made I am not doing anything else to it<br>
>>>>>>>> via<br>
>>>>>>>> the<br>
>>>>>>>> inbound socket, just letting the call run its course through our<br>
>>>>>>>> callflow app.<br>
>>>>>>>><br>
>>>>>>>> I guess I am wondering if I am doing this the right way, or I<br>
>>>>>>>> have<br>
>>>>>>>> missed something and there is an easier way.<br>
>>>>>>>><br>
>>>>>>>> Thanks<br>
>>>>>>>><br>
>>>>>>>> Bob<br>
>>>>>>>><br>
>>>>>>>> On Tue, May 18, 2010 at 3:37 AM, Michael S Collins<br>
>>>>>>>> <<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>><br>
>>>>>>>> wrote:<br>
>>>>>>>>> Are you trying to originate from a program with inbound event<br>
>>>>>>>>> socket<br>
>>>>>>>>> and<br>
>>>>>>>>> then and also have the same program handle the other call leg<br>
>>>>>>>>> (805)<br>
>>>>>>>>> using<br>
>>>>>>>>> outbound event socket? Same port? Please clarify like Tony<br>
>>>>>>>>> said.<br>
>>>>>>>>> -MC<br>
>>>>>>>>><br>
>>>>>>>>> Sent from my iPhone<br>
>>>>>>>>> On May 17, 2010, at 8:13 AM, Anthony Minessale<br>
>>>>>>>>> <<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>><br>
>>>>>>>>> wrote:<br>
>>>>>>>>><br>
>>>>>>>>> I read this like 5 times and I could not understand what you<br>
>>>>>>>>> are<br>
>>>>>>>>> trying<br>
>>>>>>>>> to<br>
>>>>>>>>> ask.<br>
>>>>>>>>> Could you rephrase with more detail?<br>
>>>>>>>>><br>
>>>>>>>>> On Sun, May 16, 2010 at 6:54 PM, Bob Coleman <<a href="mailto:bobc@devassert.com">bobc@devassert.com</a><br>
>>>>>>>>> ><br>
>>>>>>>>> wrote:<br>
>>>>>>>>>><br>
>>>>>>>>>> Hi,<br>
>>>>>>>>>><br>
>>>>>>>>>> Is there a reason why an orginate command typed into the<br>
>>>>>>>>>> freeswitch<br>
>>>>>>>>>> console overrides the dialplan socket application(<action<br>
>>>>>>>>>> application="socket" data="<a href="http://127.0.0.1:4573" target="_blank">127.0.0.1:4573</a> full"/>) with async<br>
>>>>>>>>>> eg originate sofia/gateway/????/???? 805<br>
>>>>>>>>>><br>
>>>>>>>>>> 805 being the extension the outbound event socket is fired<br>
>>>>>>>>>> from.<br>
>>>>>>>>>><br>
>>>>>>>>>> I have noticed that if the {ignore_early_media=true} is set<br>
>>>>>>>>>> that<br>
>>>>>>>>>> it<br>
>>>>>>>>>> behaves correctly and does not override with async.<br>
>>>>>>>>>><br>
>>>>>>>>>> I am using the 1.6 version source compiled locally on a<br>
>>>>>>>>>> windows<br>
>>>>>>>>>> box,<br>
>>>>>>>>>> and a extension of 805 setup with the above outbound socket<br>
>>>>>>>>>> connection.<br>
>>>>>>>>>><br>
>>>>>>>>>> Regards<br>
>>>>>>>>>><br>
>>>>>>>>>> Bob<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>
>>>>>>>>>><br>
>>>>>>>>>><br>
>>>>>>>>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>>>>>> freeswitch-dev<br>
>>>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>> --<br>
>>>>>>>>> Anthony Minessale II<br>
>>>>>>>>><br>
>>>>>>>>> FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
>>>>>>>>> ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
>>>>>>>>> Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>
>>>>>>>>><br>
>>>>>>>>> AIM: anthm<br>
>>>>>>>>> <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
>>>>>>>>> GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
>>>>>>>>> IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
>>>>>>>>><br>
>>>>>>>>> FreeSWITCH Developer Conference<br>
>>>>>>>>> <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
>>>>>>>>> <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
>>>>>>>>> pstn:+19193869900<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>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>>>>> freeswitch-dev<br>
>>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><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>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>>>>> freeswitch-dev<br>
>>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>>>><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>
>>>>>>>><br>
>>>>>>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>>>> freeswitch-dev<br>
>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> --<br>
>>>>>>> Anthony Minessale II<br>
>>>>>>><br>
>>>>>>> FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
>>>>>>> ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
>>>>>>> Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>
>>>>>>><br>
>>>>>>> AIM: anthm<br>
>>>>>>> <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
>>>>>>> GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
>>>>>>> IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
>>>>>>><br>
>>>>>>> FreeSWITCH Developer Conference<br>
>>>>>>> <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
>>>>>>> <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
>>>>>>> pstn:+19193869900<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>
>>>>>>><br>
>>>>>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>>> freeswitch-dev<br>
>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>><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/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>>> freeswitch-dev<br>
>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>><br>
>>>>><br>
>>>>><br>
>>>>> --<br>
>>>>> Anthony Minessale II<br>
>>>>><br>
>>>>> FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
>>>>> ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
>>>>> Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>
>>>>><br>
>>>>> AIM: anthm<br>
>>>>> <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
>>>>> GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
>>>>> IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
>>>>><br>
>>>>> FreeSWITCH Developer Conference<br>
>>>>> <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
>>>>> <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
>>>>> pstn:+19193869900<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/" target="_blank">http://lists.freeswitch.org/mailman/options/</a><br>
>>>>> freeswitch-dev<br>
>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>><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-" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-</a><br>
>>>> dev<br>
>>>> <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-" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-</a><br>
>>> dev<br>
>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>><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>
><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>
><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>