Mike, no luck with that either. I still need to see this through but another related approach will be needed later so I'll ask now.
Does FreeSwitch have some script or something to set up an "auto dialer." Basically, I want to be able the store some caller info then have FS automatically check to see if a "reminder" calls need to be sent out. Thanks.? -----Original Message----- From: Michael Collins <[email protected]> To: [email protected] Sent: Wed, 11 Mar 2009 10:14 am Subject: Re: [Freeswitch-users] Problem with "continue" in extension. On Wed, Mar 11, 2009 at 9:42 AM, <[email protected]> wrote: > I changed that tag so that hangup_after_bridge is false: > > ?<action application="set" data="hangup_after_bridge=false"/> > but I still don't get the .js application working which is nothing more than > a test script that ran if I dialed it's extension with the preceding one > commented out: Try adding a break="never" to your first extension: <extension name="myExtension" continue="true"> <condition field="destination_number" expression="^1111$" break="never"> <action application="info"/> <action application="set" data="bypass_media=true"/> <action application="set" data="effective_caller_id_number=${caller_id_number}"/> <action application="set" data="hangup_after_bridge=true"/> <action application="bridge" data="sofia/internal/${[email protected]:5068"/> </condition> </extension> I believe that will cause the the dialplan to keep looking for "1111" even after it has been matched once. -MC _______________________________________________ Freeswitch-users mailing list [email protected] http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users http://www.freeswitch.org
_______________________________________________ Freeswitch-users mailing list [email protected] http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users http://www.freeswitch.org
