This sort of thing is trivial with Adhearsion:<div><br></div><div>class PINValidationController < Adhearsion::CallController</div><div> def run</div><div> menu '<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">conf-</span><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">pin.wav', timeout: 10, terminator: '#' do</span></div>
<div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> match('1234') { speak 'Opening the pod bay doors' }</span></div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> </span></div>
<div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> timeout { speak 'You didn't enter anything!' }</span></div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> invalid do</span></div>
<div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> speak 'That's the wrong PIN'</span></div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> hangup</span></div>
<div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> end</span></div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> end</span></div>
<div> end</div><div>end</div><div><br clear="all">Regards,<br>Ben Langfeld<br>
<br><br><div class="gmail_quote">On 19 September 2012 23:51, Michael Collins <span dir="ltr"><<a href="mailto:msc@freeswitch.org" target="_blank">msc@freeswitch.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Don't we have a PIN validation routine in mod_voicemail? Alternatively, one could write a semi-generic PIN validation Lua script relatively easily. If no one does it prior to me getting to chapter 7 of the FS book re-write then I will consider doing it as an example script.<span class="HOEnZb"><font color="#888888"><br>
<br>-MC</font></span><div class="HOEnZb"><div class="h5"><br><br><div class="gmail_quote">On Wed, Sep 19, 2012 at 2:12 PM, Ken Rice <span dir="ltr"><<a href="mailto:krice@freeswitch.org" target="_blank">krice@freeswitch.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
If its extremely heavily loaded why not write an application to handle the<br>
pin collection and validation<br>
<br>
K<br>
<div><br>
<br>
On 9/19/12 3:31 PM, "Emrah" <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
<br>
> My example is far from being the best. Correct me if I am wrong, but abusing<br>
</div>> of the logic I am using can heavily load the dialplan processing...<br>
<div><div>> MFC's idea to execute an extension sounds pretty sexy.<br>
><br>
> Can my example have undesirable side effects? Obviously the var name can be<br>
> something more unique.<br>
><br>
> Cheers<br>
> On Sep 19, 2012, at 4:19 PM, Emrah <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
><br>
>> You are correct indeed.<br>
>> This was just to get an idea. If I want data from an external source, there<br>
>> are plenty of dialplan options, including ${api func()} to be a little<br>
>> suicidal. :P<br>
>> We can pretty much fall back on LUA, Perl, IVR, so on and so forth for<br>
>> anything and everything.<br>
>> For the purpose of my test case, my example seems to fit the bill and does<br>
>> the job.<br>
>><br>
>> Cheers,<br>
>> Emrah<br>
>> On Sep 19, 2012, at 3:57 PM, Stanislav Sinyagin <<a href="mailto:ssinyagin@yahoo.com" target="_blank">ssinyagin@yahoo.com</a>> wrote:<br>
>><br>
>>> Emrah, I think an IVR menu would be much easier to handle and to maintain<br>
>>> than what you;re trying to do.<br>
>>> Or write a Lua script, then you're even more flexible in all the checkups.<br>
>>> You can also look up the PIN in some external database instead of having it<br>
>>> statically coded in XML<br>
>>><br>
>>><br>
>>> From: Emrah <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>><br>
>>> To: FreeSWITCH Users Help <<a href="mailto:freeswitch-users@lists.freeswitch.org" target="_blank">freeswitch-users@lists.freeswitch.org</a>><br>
>>> Sent: Wednesday, September 19, 2012 8:20 PM<br>
>>> Subject: Re: [Freeswitch-users] How to force FS to execute?<br>
>>><br>
>>> There is a valid case to me, and here it is Sir. :)<br>
>>> <extension name="pin test"><br>
>>> <condition field="${pin}" expression="^1234$" break="on-true"><br>
>>> <action application="log" data="INFO Pin is ${pin}" /><br>
>>> <action application="transfer" data="3000 XML local" /><br>
>>> </condition><br>
>>> <condition field="${pin}" expression="^\d{4}" break="never"><br>
>>> <action application="playback" data="conference/conf-bad-pin.wav" /><br>
>>> <action application="unset" data="pin" /><br>
>>> </condition><br>
>>> <condition field="destination_number" expression="^111$" break="never"><br>
>>> <action application="answer"/><br>
>>> <action application="sleep" data="1000"/><br>
>>> <action application="read" data="4 4 conference/conf-pin.wav pin 10000 #,*"<br>
>>> /><br>
>>> <action application="transfer" data="111 XML local" /><br>
>>> </condition><br>
>>> </extension><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 <<a href="mailto:msc@freeswitch.org" target="_blank">msc@freeswitch.org</a>> wrote:<br>
>>><br>
>>>> There is no valid case not to use transfer (or even execute_extension) in<br>
>>>> this scenario. Create a new file: conf/dialplan/check_pin.xml:<br>
>>>><br>
>>>> <include><br>
>>>> <context name="utility"><br>
>>>> <extension name="Check PIN"><br>
>>>> <condition field="destination_number" expression="^check_pin$"/><br>
>>>> <condition field="${pin}" expression="^1234$"><br>
>>>> <action application="transfer" data ="3000 XML local" /><br>
>>>> <anti-action application="hangup" data="Login Failed"/><br>
>>>> </condition><br>
>>>> </extension><br>
>>>> </context><br>
>>>> </include><br>
>>>><br>
>>>> Then just do this in your original extension that has the read app (note I<br>
>>>> changed the name of the extension for clarity):<br>
>>>><br>
>>>> <extension name="Get PIN from caller"><br>
>>>> <condition field="destination_number" expression="^111$" break="never"><br>
>>>> <action application="answer"/><br>
>>>> <action application="sleep" data="1000"/><br>
>>>> <action application="read" data="4 4<br>
>>>> $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin 10000<br>
>>>> #,*"/><br>
>>>> <action application="log" data="INFO user entered '${pin}'"/><br>
>>>> <action application="transfer" data="check_pin XML utility"/><br>
>>>> </condition><br>
>>>> </extension><br>
>>>><br>
>>>> That's all there is to it. If this method seems weird, or unusual, or<br>
>>>> abstract then too bad! :) It's a great way to keep things relatively simple<br>
>>>> while ensuring a level of security.<br>
>>>><br>
>>>> -MC<br>
>>>><br>
>>>> On Wed, Sep 19, 2012 at 8:46 AM, Emrah <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
>>>> Naming an extension won't help for my transfer purpose.<br>
>>>> What I think I will do is use the same 1 extension idea, but verify the<br>
>>>> existance of ${pin} before executing the read instruction.<br>
>>>> This way if ${pin} exists, it will execute one set of instructions, if it<br>
>>>> doesn't, it will execute the read app. Following the read app would just be<br>
>>>> an action to transfer the user to the same context and destination_number.<br>
>>>><br>
>>>> I hope what I tried to explain makes sense.<br>
>>>> On Sep 19, 2012, at 10:40 AM, Ken Rice <<a href="mailto:krice@freeswitch.org" target="_blank">krice@freeswitch.org</a>> wrote:<br>
>>>><br>
>>>>> You can call an extension whatever you want... It doesn't have to be a<br>
>>>>> number... But using the separate context allows you to keep the<br>
>>>>> destination<br>
>>>>> number field in the CDR something same like that actual destination<br>
>>>>> number...<br>
>>>>><br>
>>>>><br>
>>>>> On 9/19/12 7:25 AM, "Emrah" <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
>>>>><br>
>>>>>> Is there a way to address an extension without assigning it to a<br>
>>>>>> destination_number? I don't want the extension to be reachable directly<br>
>>>>>> and<br>
>>>>>> would gladly avoid creating a dedicated context.<br>
>>>>>> Can I transfer a call to an extension that doesn't have a<br>
>>>>>> destination_number?<br>
>>>>>><br>
>>>>>> Best,<br>
>>>>>> Emrah<br>
>>>>>> On Sep 19, 2012, at 7:10 AM, Emrah <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
>>>>>><br>
>>>>>>> Easy indeed, but I wanted to avoid it thinking there was some other<br>
>>>>>>> alternative.<br>
>>>>>>> Thanks for your quick response, will use it.<br>
>>>>>>><br>
>>>>>>> Cheers,<br>
>>>>>>> Emrah<br>
>>>>>>> On Sep 19, 2012, at 12:50 AM, Ken Rice <<a href="mailto:krice@freeswitch.org" target="_blank">krice@freeswitch.org</a>> wrote:<br>
>>>>>>><br>
>>>>>>>> This is easy to handle... Do it as 2 different extensions and after you<br>
>>>>>>>> collect the PIN, use the transfer application to transfer the call to a<br>
>>>>>>>> pin<br>
>>>>>>>> validating extension... Problem fixed with a very simple solution<br>
>>>>>>>><br>
>>>>>>>> On 9/18/12 11:42 PM, "Emrah" <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
>>>>>>>><br>
>>>>>>>>> Please bypass the inline="true"Š A fantasy of mine.<br>
>>>>>>>>> On Sep 19, 2012, at 12:32 AM, Emrah <<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>> wrote:<br>
>>>>>>>>><br>
>>>>>>>>>> Hi all,<br>
>>>>>>>>>><br>
>>>>>>>>>> My example below cannot work because FS does not store the value of<br>
>>>>>>>>>> ${pin}<br>
>>>>>>>>>> until the call goes into execution state. While keeping it simple,<br>
>>>>>>>>>> what<br>
>>>>>>>>>> would<br>
>>>>>>>>>> be your take on this? Is there a way to instruct FS to start<br>
>>>>>>>>>> executing at<br>
>>>>>>>>>> some point and discovering the dialplan along the way?<br>
>>>>>>>>>><br>
>>>>>>>>>> <extension name="pin test"><br>
>>>>>>>>>> <condition field="destination_number" expression="^111$"<br>
>>>>>>>>>> break="never"><br>
>>>>>>>>>> <action application="answer"/><br>
>>>>>>>>>> <action application="sleep" data="1000"/><br>
>>>>>>>>>> <action application="read" data="4 4<br>
>>>>>>>>>> $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin<br>
>>>>>>>>>> 10000<br>
>>>>>>>>>> #,*"<br>
>>>>>>>>>> inline="true" /><br>
>>>>>>>>>> </condition><br>
>>>>>>>>>> <condition field="${pin}" expression="^1234$"><br>
>>>>>>>>>> <action application="transfer" data ="3000 XML local" /><br>
>>>>>>>>>> </condition><br>
>>>>>>>>>> <condition field="${pin}" expression="^\d{4}$"><br>
>>>>>>>>>> <action application="hangup" /><br>
>>>>>>>>>> </condition><br>
>>>>>>>>>> </extension><br>
>>>>>>>>>><br>
>>>>>>>>>> Thanks and all the best, as always.<br>
>>>>>>>>>> Emrah<br>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>> ______________________________________________________________________<br>
>>>>>>>>> ___<br>
>>>>>>>>> Professional FreeSWITCH Consulting Services:<br>
>>>>>>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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-use" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-use</a><br>
>>>>>>>>> rs<br>
>>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>>><br>
>>>>>>>> --<br>
>>>>>>>> Ken<br>
>>>>>>>> <a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
>>>>>>>> <a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
>>>>>>>> <a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
>>>>>>>> <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> _______________________________________________________________________<br>
>>>>>>>> __<br>
>>>>>>>> Professional FreeSWITCH Consulting Services:<br>
>>>>>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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>
>>>>>>>><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-user" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-user</a>>>>>>>>><br>
s<br>
</div></div><div><div>>>>>>>>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>>>>>>><br>
>>>>>><br>
>>>>>><br>
>>>>>> _________________________________________________________________________<br>
>>>>>> Professional FreeSWITCH Consulting Services:<br>
>>>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>>>>><br>
>>>>> --<br>
>>>>> Ken<br>
>>>>> <a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
>>>>> <a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
>>>>> <a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
>>>>> <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
>>>>><br>
>>>>><br>
>>>>><br>
>>>>> _________________________________________________________________________<br>
>>>>> Professional FreeSWITCH Consulting Services:<br>
>>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>>>><br>
>>>><br>
>>>> _________________________________________________________________________<br>
>>>> Professional FreeSWITCH Consulting Services:<br>
>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>>>><br>
>>>><br>
>>>><br>
>>>> --<br>
>>>> Michael S Collins<br>
>>>> Twitter: @mercutioviz<br>
>>>> <a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
>>>> <a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
>>>> <a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
>>>><br>
>>>><br>
>>>> _________________________________________________________________________<br>
>>>> Professional FreeSWITCH Consulting Services:<br>
>>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>>><br>
>>><br>
>>> _________________________________________________________________________<br>
>>> Professional FreeSWITCH Consulting Services:<br>
>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>>><br>
>>><br>
>>> _________________________________________________________________________<br>
>>> Professional FreeSWITCH Consulting Services:<br>
>>> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
>><br>
><br>
><br>
> _________________________________________________________________________<br>
> Professional FreeSWITCH Consulting Services:<br>
> <a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
<br>
--<br>
Ken<br>
<a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
<a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
<a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
<br>
<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org" target="_blank">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 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><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Michael S Collins<br>Twitter: @mercutioviz<br><a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br><a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br><br><br>
</div></div><br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a 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 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></div>