<html><body><div style="color:#000; background-color:#fff; font-family:arial, helvetica, sans-serif;font-size:10pt"><div><span>Emrah, I think an IVR menu would be much easier to handle and to maintain than what you;re trying to do. <br></span></div><div style="color: rgb(0, 0, 0); font-size: 13.3333px; font-family: arial,helvetica,sans-serif; background-color: transparent; font-style: normal;"><span>Or write a Lua script, then you're even more flexible in all the checkups. You can also look up the PIN in some external database instead of having it statically coded in XML</span></div><div style="color: rgb(0, 0, 0); font-size: 13.3333px; font-family: arial,helvetica,sans-serif; background-color: transparent; font-style: normal;"><br><span></span></div><div style="color: rgb(0, 0, 0); font-size: 13.3333px; font-family: arial,helvetica,sans-serif; background-color: transparent; font-style: normal;"><span></span></div><div><br><blockquote style="border-left:
 2px solid rgb(16, 16, 255); margin-left: 5px; margin-top: 5px; padding-left: 5px;">  <div style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"> <div style="font-family: times new roman, new york, times, serif; font-size: 12pt;"> <div dir="ltr"> <font face="Arial" size="2"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Emrah &lt;lists@kavun.ch&gt;<br> <b><span style="font-weight: bold;">To:</span></b> FreeSWITCH Users Help &lt;freeswitch-users@lists.freeswitch.org&gt; <br> <b><span style="font-weight: bold;">Sent:</span></b> Wednesday, September 19, 2012 8:20 PM<br> <b><span style="font-weight: bold;">Subject:</span></b> Re: [Freeswitch-users] How to force FS to execute?<br> </font> </div> <br>
There is a valid case to me, and here it is Sir. :)<br>&lt;extension name="pin test"&gt;<br>&lt;condition field="${pin}" expression="^1234$" break="on-true"&gt;<br>&lt;action application="log" data="INFO Pin is ${pin}" /&gt;<br>&lt;action application="transfer" data="3000 XML local" /&gt;<br>&lt;/condition&gt;<br>&lt;condition field="${pin}" expression="^\d{4}" break="never"&gt;<br>&lt;action application="playback" data="conference/conf-bad-pin.wav" /&gt;<br>&lt;action application="unset" data="pin" /&gt;<br>&lt;/condition&gt;<br>&lt;condition field="destination_number" expression="^111$" break="never"&gt;<br>&lt;action application="answer"/&gt;<br>&lt;action application="sleep" data="1000"/&gt;<br>&lt;action application="read" data="4 4 conference/conf-pin.wav pin 10000 #,*" /&gt;<br>&lt;action application="transfer" data="111 XML local" /&gt;<br>&lt;/condition&gt;<br>&lt;/extension&gt;<br><br>I think I'm starting to get the hang of this
 thing!<br><br>E<br><br>On Sep 19, 2012, at 12:22 PM, Michael Collins &lt;<a ymailto="mailto:msc@freeswitch.org" href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>&gt; wrote:<br><br>&gt; There is no valid case not to use transfer (or even execute_extension) in this scenario. Create a new file: conf/dialplan/check_pin.xml:<br>&gt; <br>&gt; &lt;include&gt;<br>&gt;&nbsp;  &lt;context name="utility"&gt;<br>&gt;&nbsp; &nbsp;  &lt;extension name="Check PIN"&gt;<br>&gt;&nbsp; &nbsp; &nbsp;  &lt;condition field="destination_number" expression="^check_pin$"/&gt;<br>&gt;&nbsp; &nbsp; &nbsp;  &lt;condition field="${pin}" expression="^1234$"&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp;  &lt;action application="transfer" data ="3000 XML local" /&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp;  &lt;anti-action application="hangup" data="Login Failed"/&gt;<br>&gt;&nbsp; &nbsp; &nbsp;  &lt;/condition&gt;<br>&gt;&nbsp; &nbsp;  &lt;/extension&gt;<br>&gt;&nbsp; 
 &lt;/context&gt;<br>&gt; &lt;/include&gt;<br>&gt; <br>&gt; Then just do this in your original extension that has the read app (note I changed the name of the extension for clarity):<br>&gt; <br>&gt; &lt;extension name="Get PIN from caller"&gt;<br>&gt;&nbsp;  &lt;condition field="destination_number" expression="^111$" break="never"&gt;<br>&gt;&nbsp; &nbsp;  &lt;action application="answer"/&gt;<br>&gt;&nbsp; &nbsp;  &lt;action application="sleep" data="1000"/&gt;<br>&gt;&nbsp; &nbsp;  &lt;action application="read" data="4 4 $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin 10000 #,*"/&gt;<br>&gt;&nbsp; &nbsp;  &lt;action application="log" data="INFO user entered '${pin}'"/&gt;<br>&gt;&nbsp; &nbsp;  &lt;action application="transfer" data="check_pin XML utility"/&gt;&nbsp; &nbsp;  <br>&gt;&nbsp;  &lt;/condition&gt;<br>&gt; &lt;/extension&gt;<br>&gt; <br>&gt; That's all there is to it. If this method seems weird, or unusual, or abstract then
 too bad! :) It's a great way to keep things relatively simple while ensuring a level of security.<br>&gt; <br>&gt; -MC<br>&gt; <br>&gt; On Wed, Sep 19, 2012 at 8:46 AM, Emrah &lt;<a ymailto="mailto:lists@kavun.ch" href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>&gt; Naming an extension won't help for my transfer purpose.<br>&gt; What I think&nbsp; I will do is use the same 1 extension idea, but verify the existance of ${pin} before executing the read instruction.<br>&gt; This way if ${pin} exists, it will execute one set of instructions, if it doesn't, it will execute the read app. Following the read app would just be an action to transfer the user to the same context and destination_number.<br>&gt; <br>&gt; I hope what I tried to explain makes sense.<br>&gt; On Sep 19, 2012, at 10:40 AM, Ken Rice &lt;<a ymailto="mailto:krice@freeswitch.org" href="mailto:krice@freeswitch.org">krice@freeswitch.org</a>&gt; wrote:<br>&gt; <br>&gt; &gt; You
 can call an extension whatever you want... It doesn't have to be a<br>&gt; &gt; number... But using the separate context allows you to keep the destination<br>&gt; &gt; number field in the CDR something same like that actual destination<br>&gt; &gt; number...<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 9/19/12 7:25 AM, "Emrah" &lt;<a ymailto="mailto:lists@kavun.ch" href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt;&gt; Is there a way to address an extension without assigning it to a<br>&gt; &gt;&gt; destination_number? I don't want the extension to be reachable directly and<br>&gt; &gt;&gt; would gladly avoid creating a dedicated context.<br>&gt; &gt;&gt; Can I transfer a call to an extension that doesn't have a destination_number?<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; Best,<br>&gt; &gt;&gt; Emrah<br>&gt; &gt;&gt; On Sep 19, 2012, at 7:10 AM, Emrah &lt;<a ymailto="mailto:lists@kavun.ch"
 href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;&gt; Easy indeed, but I wanted to avoid it thinking there was some other<br>&gt; &gt;&gt;&gt; alternative.<br>&gt; &gt;&gt;&gt; Thanks for your quick response, will use it.<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt; Cheers,<br>&gt; &gt;&gt;&gt; Emrah<br>&gt; &gt;&gt;&gt; On Sep 19, 2012, at 12:50 AM, Ken Rice &lt;<a ymailto="mailto:krice@freeswitch.org" href="mailto:krice@freeswitch.org">krice@freeswitch.org</a>&gt; wrote:<br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; This is easy to handle... Do it as 2 different extensions and after you<br>&gt; &gt;&gt;&gt;&gt; collect the PIN, use the transfer application to transfer the call to a pin<br>&gt; &gt;&gt;&gt;&gt; validating extension... Problem fixed with a very simple solution<br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; On 9/18/12 11:42 PM, "Emrah" &lt;<a ymailto="mailto:lists@kavun.ch"
 href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt; Please bypass the inline="true"Š A fantasy of mine.<br>&gt; &gt;&gt;&gt;&gt;&gt; On Sep 19, 2012, at 12:32 AM, Emrah &lt;<a ymailto="mailto:lists@kavun.ch" href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; Hi all,<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; My example below cannot work because FS does not store the value of ${pin}<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; until the call goes into execution state. While keeping it simple, what<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; would<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; be your take on this? Is there a way to instruct FS to start executing at<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; some point and discovering the dialplan along the way?<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;extension
 name="pin test"&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field="destination_number" expression="^111$" break="never"&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;action application="answer"/&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;action application="sleep" data="1000"/&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;action application="read" data="4 4<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin 10000<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; #,*"<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; inline="true" /&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field="${pin}" expression="^1234$"&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;action application="transfer" data ="3000 XML local" /&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field="${pin}" expression="^\d{4}$"&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;action
 application="hangup" /&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; &lt;/extension&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; Thanks and all the best, as always.<br>&gt; &gt;&gt;&gt;&gt;&gt;&gt; Emrah<br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt; _________________________________________________________________________<br>&gt; &gt;&gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>&gt; &gt;&gt;&gt;&gt;&gt; <a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.cudatel.com/"
 target="_blank">http://www.cudatel.com</a><br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>&gt; &gt;&gt;&gt;&gt;&gt; <a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &gt;&gt;&gt;&gt;&gt; UNSUBSCRIBE:<a
 href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; &gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; --<br>&gt; &gt;&gt;&gt;&gt; Ken<br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.FreeSWITCH.org</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.ClueCon.com</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.ostag.org/" target="_blank">http://www.OSTAG.org</a><br>&gt; &gt;&gt;&gt;&gt; irc.freenode.net #freeswitch<br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; _________________________________________________________________________<br>&gt; &gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>&gt;
 &gt;&gt;&gt;&gt; <a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; &gt;&gt;&gt;&gt;<br>&gt; &gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>&gt;
 &gt;&gt;&gt;&gt; <a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &gt;&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; &gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;&gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; _________________________________________________________________________<br>&gt; &gt;&gt; Professional FreeSWITCH Consulting Services:<br>&gt; &gt;&gt; <a ymailto="mailto:consulting@freeswitch.org"
 href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; &gt;&gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; &gt;&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt; Official FreeSWITCH Sites<br>&gt; &gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; &gt;&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt; FreeSWITCH-users mailing list<br>&gt; &gt;&gt; <a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org"
 href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; &gt;&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt;<br>&gt; &gt; --<br>&gt; &gt; Ken<br>&gt; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.FreeSWITCH.org</a><br>&gt; &gt; <a href="http://www.cluecon.com/" target="_blank">http://www.ClueCon.com</a><br>&gt; &gt; <a href="http://www.ostag.org/" target="_blank">http://www.OSTAG.org</a><br>&gt; &gt; irc.freenode.net #freeswitch<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;
 _________________________________________________________________________<br>&gt; &gt; Professional FreeSWITCH Consulting Services:<br>&gt; &gt; <a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; &gt; <a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; &gt;<br>&gt; &gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; &gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>&gt; &gt;<br>&gt; &gt; Official FreeSWITCH Sites<br>&gt; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; &gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; &gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; &gt;<br>&gt; &gt; FreeSWITCH-users mailing list<br>&gt; &gt; <a
 ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; &gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; <br>&gt; <br>&gt; _________________________________________________________________________<br>&gt; Professional FreeSWITCH Consulting Services:<br>&gt; <a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; <a href="http://www.freeswitchsolutions.com/"
 target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; <br>&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>&gt; <br>&gt; Official FreeSWITCH Sites<br>&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; <br>&gt; FreeSWITCH-users mailing list<br>&gt; <a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; UNSUBSCRIBE:<a
 href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; <br>&gt; <br>&gt; <br>&gt; -- <br>&gt; Michael S Collins<br>&gt; Twitter: @mercutioviz<br>&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.FreeSWITCH.org</a><br>&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.ClueCon.com</a><br>&gt; <a href="http://www.ostag.org/" target="_blank">http://www.OSTAG.org</a><br>&gt; <br>&gt; <br>&gt; _________________________________________________________________________<br>&gt; Professional FreeSWITCH Consulting Services:<br>&gt; <a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>&gt; <a href="http://www.freeswitchsolutions.com/"
 target="_blank">http://www.freeswitchsolutions.com</a><br>&gt; <br>&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>&gt; <a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>&gt; <br>&gt; Official FreeSWITCH Sites<br>&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt; <a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br>&gt; <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt; <br>&gt; FreeSWITCH-users mailing list<br>&gt; <a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; UNSUBSCRIBE:<a
 href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br><br><br>_________________________________________________________________________<br>Professional FreeSWITCH Consulting Services:<br><a ymailto="mailto:consulting@freeswitch.org" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br><a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br><br>FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br><a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br><br>Official FreeSWITCH Sites<br><a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br><a href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br><a
 href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br><br>FreeSWITCH-users mailing list<br><a ymailto="mailto:FreeSWITCH-users@lists.freeswitch.org" 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><br> </div> </div> </blockquote></div>   </div></body></html>