my last email had a code suggestion<br><br><div class="gmail_quote">On Tue, Mar 16, 2010 at 9:13 AM, Peter Olsson <span dir="ltr">&lt;<a href="mailto:peter.olsson@visionutveckling.se">peter.olsson@visionutveckling.se</a>&gt;</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;">








<div link="blue" vlink="purple" lang="SV">

<div>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">Anthony, thanks for further information!</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">My goal is not to wait for the break to be executed, I just want
to make sure it will be handled properly – and actually break the channel
that is playing. So nothing wrong with the async behaviour itself - I like it
the way it is.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">I’ve been digging into the FS code for a couple of hours,
and I think the problem occurs when I’m “fast” enough to add
the break command, and then a new playback command in the event queue (and they
both exist there). Then in the main loop of switch_ivr_play_file(), after
CF_BREAK flag is checked, switch_ivr_parse_all_events() will be called. If both
events exist in the queue, the CF_BREAK will first be set, then on the next
event it will be reset again, and the new playback will begin. But it will
never break the original playback.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">Since I havn’t digging too deep in the code, I’m not
100% sure of this :) I was hoping you could help out with your expertice. My
current patch looks something like this – do you think it’s possible
this causes other problems? By the way – sorry for getting this technical
in the users-list, I guess this belongs more to the dev-list...</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">Index: src/switch_ivr.c</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">===================================================================</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">--- src/switch_ivr.c                         (revision 17000)</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+++ src/switch_ivr.c                      (working copy)</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">@@ -660,12 +660,16 @@</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> SWITCH_DECLARE(switch_status_t)
switch_ivr_parse_all_events(switch_core_session_t *session)</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> {</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">                             int x = 0;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+                           switch_channel_t *channel =
switch_core_session_get_channel(session);</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">-</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">                             switch_ivr_parse_all_messages(session);</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">-                            while
(switch_ivr_parse_next_event(session) == SWITCH_STATUS_SUCCESS)</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+                           while
(switch_ivr_parse_next_event(session) == SWITCH_STATUS_SUCCESS) {</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">                                                          x++;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+                                                        if
(switch_channel_test_flag(channel, CF_BREAK)) {</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+                                                                                     break;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+                                                        }</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">+        }</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">                             if (x) {</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">                                                          switch_ivr_sleep(session,
0, SWITCH_TRUE, NULL);</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">/Peter Olsson</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<div style="border-width: 1pt medium medium; border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; padding: 3pt 0cm 0cm;">

<p class="MsoNormal"><b><span style="font-size: 10pt;">Från:</span></b><span style="font-size: 10pt;">
<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>
[mailto:<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>] <b>För </b>Anthony
Minessale<br>
<b>Skickat:</b> den 16 mars 2010 14:55<div><div></div><div class="h5"><br>
<b>Till:</b> <a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a><br>
<b>Ämne:</b> Re: [Freeswitch-users] ESL and application &quot;break&quot; (to
stop file playback) - timing issues.</div></div></span></p>

</div><div><div></div><div class="h5">

<p class="MsoNormal"> </p>

<p class="MsoNormal" style="margin-bottom: 12pt;">These events sent via sendmsg
are designed to be asynchronous.<br>
artificial waiting may be adding to the problem.<br>
 <br>
Step outside of what you are trying to do and consider that the sendmsg command
itself<br>
is designed to send a 1 way message to the channel, the reply is only to
confirm that it was sent not the reply from<br>
the application you are executing, because executing an app is not the only
thing you can do.<br>
<br>
if you don&#39;t like async behaviour you could always send a blocking instruction
like the read or play_and_get_digits app to collect your info.<br>
<br>
<br>
If anything, it might be ok to put this in the &quot;break&quot; app at the end<br>
<br>
switch_channel_wait_for_flag(channel, CF_BROADCAST, SWITCH_FALSE, 2000, NULL);<br>
<br>
<br>
</p>

<div>

<p class="MsoNormal">On Tue, Mar 16, 2010 at 6:41 AM, Peter Olsson &lt;<a href="mailto:peter.olsson@visionutveckling.se" target="_blank">peter.olsson@visionutveckling.se</a>&gt;
wrote:</p>

<div>

<div>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">I agree, that is a possibility.
However, when sending a “SendMsg” with application
“break”, and receive “+OK” as it’s reply, you
kind of expect that it was received correctly, and will be handled in the event
queue properly.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">I have a created a small
patch that (probably) will fix this in FS, without breaking anything else. I
just need to test it first – if everything seems ok I will add a jira for
it, with the patch attached.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">/Peter</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);"> </span></p>

<div style="border-width: 1pt medium medium; border-style: solid none none; padding: 3pt 0cm 0cm; border-color: -moz-use-text-color;">

<p class="MsoNormal"><b><span style="font-size: 10pt;" lang="EN-US">Från:</span></b><span style="font-size: 10pt;" lang="EN-US"> <a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>
[mailto:<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>] <b>För </b>Anthony
Minessale<br>
<b>Skickat:</b> den 15 mars 2010 17:21</span></p>

<div>

<div>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"><br>
<b>Till:</b> <a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a><br>
<b>Ämne:</b> Re: [Freeswitch-users] ESL and application &quot;break&quot; (to
stop file playback) - timing issues.</span></p>

</div>

</div>

</div>

<div>

<div>

<p class="MsoNormal"><span lang="EN-US"> </span></p>

<p class="MsoNormal" style="margin-bottom: 12pt;">you
could also wait for the execute_complete of the file you were playing</p>

<div>

<p class="MsoNormal">On
Mon, Mar 15, 2010 at 9:40 AM, Peter Olsson &lt;<a href="mailto:peter.olsson@visionutveckling.se" target="_blank">peter.olsson@visionutveckling.se</a>&gt;
wrote:</p>

<div>

<div>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">Thanks for the reply.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">Yes, I thought of this.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">But that still
shouldn’t solve the issue? It will only tell that the CF_BREAK flag was
set on the channel, not that the current playback detected the flag in the loop
(which I guess is done in a different thread), or is this event sent once the
playback really did stop?</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US">/Peter</span></p>

<p class="MsoNormal"><span style="font-size: 10pt; color: rgb(31, 73, 125);" lang="EN-US"> </span></p>

<div style="border-width: 1pt medium medium; border-style: solid none none; padding: 3pt 0cm 0cm; border-color: -moz-use-text-color;">

<p class="MsoNormal"><b><span style="font-size: 10pt;" lang="EN-US">Från:</span></b><span style="font-size: 10pt;" lang="EN-US"> <a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>
[mailto:<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>] <b>För </b>Anthony
Minessale<br>
<b>Skickat:</b> den 15 mars 2010 16:31<br>
<b>Till:</b> <a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a><br>
<b>Ämne:</b> Re: [Freeswitch-users] ESL and application &quot;break&quot; (to
stop file playback) - timing issues.</span></p>

</div>

<div>

<div>

<p class="MsoNormal"><span lang="EN-US"> </span></p>

<p class="MsoNormal" style="margin-bottom: 12pt;">you
could wait for the execute_complete event for your break command.</p>

<div>

<p class="MsoNormal">On
Mon, Mar 15, 2010 at 3:20 AM, Peter Olsson &lt;<a href="mailto:peter.olsson@visionutveckling.se" target="_blank">peter.olsson@visionutveckling.se</a>&gt;
wrote:</p>

<div>

<div>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">I’m not sure if this belongs in Jira,
or if it’s possible to do it another way – so I try the list first
:)</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">I’m using ESL to do some IVR
functions. Basically I play some sound files, wait for DTMF, and then do
something, like record a message, transfer the call to a mobile phone etc.
Quite basic and simple.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">I’ve noticed one problem with this,
and it’s when I want to stop playback using command “break”.
In 99% of the time everything works as expected, but sometimes I get this
problem – and the problem is that the current file doesn’t stop
playing. And I think I know why this is happening.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">Lets say I first send
playback(tone_stream://%(1500, 3500, 440.0, 0.0);loops=100) to the channel.
This will play a ring-tone (swedish) and loop through it 100 times.. When I
want to stop this tone I send the break command, and directly after this a new
playback command. Maybe 1 time in 100 tries the tone_stream doesn’t stop
playing. I think this is becuase how break works. From what I understand from
the source it just sets the CF_BREAK flag on the channel, and then the playback
application will detect this and stop the playback. However, when I send a new
playback command immediately after break it will reset the CF_BREAK-flag again,
to make sure it won’t cause any problems for the new playback. So if the
original playback (tone_stream) didn’t check the flag before it was
reset, it won’t known that it was supposed to stop playing.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">I guess I could wait 50ms before sending
the new playback message, but I can really never be sure that it was handled
properly.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">Is there any other way around this? How
about “break &lt;uuid&gt; all”, will it make any difference in this
case? Or should this just be treated as a timing bug, and filed to Jira? Any
help on this would be greatly appreciated.</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">These are the messages I’m sending;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">SendMsg &lt;uuid&gt;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">call-command: execute</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">execute-app-name: playback</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">execute-app-arg: tone_stream://%(1500,
3500, 440.0, 0.0);loops=100</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">When I don’t want this to play
anymore I send a break;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">SendMsg &lt;uuid&gt;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">call-command: execute</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">execute-app-name: break</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">And immediately after this I want to play
another file;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">SendMsg &lt;uuid&gt;</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">call-command: execute</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">execute-app-name: playback</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US">execute-app-arg: file/to/play.wav</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;" lang="EN-US"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;">Regards,</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;"> </span></p>

<p class="MsoNormal"><span style="font-size: 10pt;">Peter Olsson</span></p>

<p class="MsoNormal"><span style="font-size: 10pt;"> </span></p>

</div>

</div>

<p class="MsoNormal" style="margin-bottom: 12pt;"><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></p>

</div>

</div>

</div>

<div>

<div>

<p class="MsoNormal"><br>
<br clear="all">
<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" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">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" target="_blank">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:+19193869900</p>

</div>

</div>

</div>

</div>

<p class="MsoNormal" style="margin-bottom: 12pt;"><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></p>

</div>

</div>

</div>

<div>

<div>

<p class="MsoNormal"><br>
<br clear="all">
<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" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">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" target="_blank">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:+19193869900</p>

</div>

</div>

</div>

</div>

<p class="MsoNormal" style="margin-bottom: 12pt;"><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></p>

</div>

</div></div><p class="MsoNormal"></p><div><div></div><div class="h5"><br>
<br clear="all">
<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" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">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" target="_blank">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:+19193869900<br></div></div>
!DSPAM:4b9f8f4132931389420256! 

</div>

</div>


<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">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>
<br></blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
Twitter: <a href="http://twitter.com/FreeSWITCH_wire">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">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="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:+19193869900<br>