VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
luismzuccolo at yahoo.... Guest
|
Posted: Mon Sep 01, 2008 11:34 pm Post subject: [Freeswitch-users] DTMF problem |
|
|
Hello,
I've connected an analog pbx to FreeSWITCH throught a fxo port.
In this setup only need the voicemail functionality of freeSWITCH who
recived a dtmf from a pbx.
To test dtmf app i've created the
extension .../conf/dialplan/extensions/2.xml:
<include>
<extension name="incoming-fx0-channel-2">
<condition field="source" expression="mod_openzap"/>
<condition field="destination_number" expression=="^(2)$">
<action application="answer"/>
<action application="start_dtmf" data="true"/>
<action application="sleep" data="250"/>
<action application="hangup"/>
</condition>
</extension>
</include>
At console I don't see any reference to dtmf.
Does anybody have any recommendations about this?
Thanks in advance
Luis Zuccolo
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Tue Sep 02, 2008 12:10 am Post subject: [Freeswitch-users] DTMF problem |
|
|
Are you sure that the call is making it to your extension? Also, you
sleep for only 250 ms after start_dtmf and then issue a hangup. That's
not a whole lot of time to send a digit. Perhaps your test would work
better with the dialplan app "read" but that's just a guess on my part.
-MC
Sent from my iPhone
On Sep 1, 2008, at 8:01 PM, "Luis M. Zuccolo"
<luismzuccolo@yahoo.com.ar> wrote:
Quote: | Hello,
I've connected an analog pbx to FreeSWITCH throught a fxo port.
In this setup only need the voicemail functionality of freeSWITCH who
recived a dtmf from a pbx.
To test dtmf app i've created the
extension .../conf/dialplan/extensions/2.xml:
<include>
<extension name="incoming-fx0-channel-2">
<condition field="source" expression="mod_openzap"/>
<condition field="destination_number" expression=="^(2)$">
<action application="answer"/>
<action application="start_dtmf" data="true"/>
<action application="sleep" data="250"/>
<action application="hangup"/>
</condition>
</extension>
</include>
At console I don't see any reference to dtmf.
Does anybody have any recommendations about this?
Thanks in advance
Luis Zuccolo
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
¡Abrà tu cuenta ya! - http://correo.yahoo.com.ar
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
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
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
luismzuccolo at yahoo.... Guest
|
Posted: Tue Sep 02, 2008 12:45 pm Post subject: [Freeswitch-users] DTMF problem |
|
|
Hi,
Yes, I'm sure that the calls is marking the freeSWITCH extension. In asterisk I can see the digits sended.
I'll go to increase the sleep time and see the results.
Anyway, how can I use the app read?
Would somebody show an example about this?
Thanks in advance.
Luis Zuccolo
----- Mensaje original ----
De: Michael S Collins <msc@freeswitch.org>
Para: "freeswitch-users@lists.freeswitch.org" <freeswitch-users@lists.freeswitch.org>
Enviado: martes 2 de septiembre de 2008, 2:09:18
Asunto: Re: [Freeswitch-users] DTMF problem
Are you sure that the call is making it to your extension? Also, you
sleep for only 250 ms after start_dtmf and then issue a hangup. That's
not a whole lot of time to send a digit. Perhaps your test would work
better with the dialplan app "read" but that's just a guess on my part.
-MC
Sent from my iPhone
On Sep 1, 2008, at 8:01 PM, "Luis M. Zuccolo"
<luismzuccolo@yahoo.com.ar (luismzuccolo@yahoo.com.ar)> wrote:
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Yahoo! Cocina
Recetas prácticas y comida saludable
Visitá http://ar.mujer.yahoo.com/cocina/ |
|
Back to top |
|
|
mcollins at fcnetwork.com Guest
|
Posted: Tue Sep 02, 2008 12:59 pm Post subject: [Freeswitch-users] DTMF problem |
|
|
Start here:
http://wiki.freeswitch.org/wiki/Misc._Dialplan_Tools_read
There are a few examples. I don’t know if this is the app you need for production but it will definitely let you read a DTMF and thus is sufficient for testing whether or not your system is seeing DTMFs from callers.
-MC
From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Luis Manuel Zuccolo
Sent: Tuesday, September 02, 2008 10:43 AM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] DTMF problem
Hi,
Yes, I'm sure that the calls is marking the freeSWITCH extension. In asterisk I can see the digits sended.
I'll go to increase the sleep time and see the results.
Anyway, how can I use the app read?
Would somebody show an example about this?
Thanks in advance.
Luis Zuccolo
----- Mensaje original ----
De: Michael S Collins <msc@freeswitch.org>
Para: "freeswitch-users@lists.freeswitch.org" <freeswitch-users@lists.freeswitch.org>
Enviado: martes 2 de septiembre de 2008, 2:09:18
Asunto: Re: [Freeswitch-users] DTMF problem
Are you sure that the call is making it to your extension? Also, you
sleep for only 250 ms after start_dtmf and then issue a hangup. That's
not a whole lot of time to send a digit. Perhaps your test would work
better with the dialplan app "read" but that's just a guess on my part.
-MC
Sent from my iPhone
On Sep 1, 2008, at 8:01 PM, "Luis M. Zuccolo"
<luismzuccolo@yahoo.com.ar (luismzuccolo@yahoo.com.ar)> wrote:
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Yahoo! Cocina
Recetas prácticas y comida saludable
Visitá http://ar.mujer.yahoo.com/cocina/ |
|
Back to top |
|
|
luismzuccolo at yahoo.... Guest
|
Posted: Wed Sep 03, 2008 12:22 pm Post subject: [Freeswitch-users] DTMF problem |
|
|
Hi,
I increase the sleep time and I can see the dtmf digit in cosnole now.
How can I capture this digits and send it to voicemail account? An example, please.
Thanks in advance
Luis Zuccolo
----- Mensaje original ----
De: Michael Collins <mcollins@fcnetwork.com>
Para: freeswitch-users@lists.freeswitch.org
Enviado: martes 2 de septiembre de 2008, 14:58:28
Asunto: Re: [Freeswitch-users] DTMF problem
Start here:
http://wiki.freeswitch.org/wiki/Misc._Dialplan_Tools_read
There are a few examples. I don’t know if this is the app you need for production but it will definitely let you read a DTMF and thus is sufficient for testing whether or not your system is seeing DTMFs from callers.
-MC
From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Luis Manuel Zuccolo
Sent: Tuesday, September 02, 2008 10:43 AM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] DTMF problem
Hi,
Yes, I'm sure that the calls is marking the freeSWITCH extension. In asterisk I can see the digits sended.
I'll go to increase the sleep time and see the results.
Anyway, how can I use the app read?
Would somebody show an example about this?
Thanks in advance.
Luis Zuccolo
----- Mensaje original ----
De: Michael S Collins < msc@freeswitch.org >
Para : " freeswitch-users@lists.freeswitch.org " < freeswitch-users@lists.freeswitch.org >
Enviado: martes 2 de septiembre de 2008, 2:09:18
Asunto: Re: [Freeswitch-users] DTMF problem
Are you sure that the call is making it to your extension? Also, you
sleep for only 250 ms after start_dtmf and then issue a hangup. That's
not a whole lot of time to send a digit. Perhaps your test would work
better with the dialplan app "read" but that's just a guess on my part.
-MC
Sent from my iPhone
On Sep 1, 2008, at 8:01 PM, "Luis M. Zuccolo"
<luismzuccolo@yahoo.com.ar (luismzuccolo@yahoo.com.ar)> wrote:
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Yahoo! Cocina
Recetas prácticas y comida saludable
Visitá http://ar.mujer.yahoo.com/cocina/
Yahoo! Cocina
Recetas prácticas y comida saludable
Visitá http://ar.mujer.yahoo.com/cocina/ |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|