[Freeswitch-users] Problem with "continue" in extension.
Michael Collins
msc at freeswitch.org
Wed Mar 11 11:53:18 PDT 2009
On Wed, Mar 11, 2009 at 10:42 AM, <mszlazak at aol.com> wrote:
> Mike, no luck with that either.
>
You may have to get fancy and use the transfer app and create an
extension like this:
<extension name="cleanup 1111">
<condition field="destination_number" expression="^(CLEANUP1111)$">
<action application="do your cleanup stuff here..."/>
<condition>
</extension>
Then just call it from the regular 1111 extension:
<action application="transfer" data="dialplan XML CLEANUP1111"/>
> 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.
>
you do you have the sched_api family of API functions:
http://wiki.freeswitch.org/wiki/Mod_commands#sched_api
I don't have it wikified but there is also an unsched_api function so
that you can cancel a future scheduled api.
The API could be something like "originate user/1000 &bridge(foo/bar)"
-MC
More information about the FreeSWITCH-users
mailing list