VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
larclap at yahoo.com Guest
|
Posted: Wed Jul 22, 2009 3:21 pm Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
Brian,
When calling into FreeSWITCH and pressing * during the greeting, the call immediately hangs up.
It used to ask for the mailbox number to retrieve messages. It no longer works. I don’t know if my dialplan is causing the error or something in FreeSWITCH has changed.
Any ideas?
http://pastebin.freeswitch.org/9803
Thanks, Lars |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Wed Jul 22, 2009 6:37 pm Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
you are using a channel created with a script and you did not set
js
session.autoHangup(0)
lua
session:autoHangup(0)
so when the * makes the call transfer the script kills the channel.
On Wed, Jul 22, 2009 at 3:13 PM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
lfurrea at gmail.com Guest
|
Posted: Wed Jul 22, 2009 6:38 pm Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
I don't know if this may be related but in voicemail.conf.xml by default the two params that follow are defined:
<param name="operator-extension" value="operator XML default"/>
<param name="operator-key" value="9"/>
And pressing 9 during the greeting does not send me to the operator.
I am on trunk rev 14123M
On Wed, Jul 22, 2009 at 2:13 PM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
|
|
Back to top |
|
|
mike at jerris.com Guest
|
Posted: Wed Jul 22, 2009 6:51 pm Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
Do you have anything on that extension?
On Jul 22, 2009, at 7:21 PM, Luis F Urrea <lfurrea@gmail.com (lfurrea@gmail.com)> wrote:
|
|
Back to top |
|
|
larclap at yahoo.com Guest
|
Posted: Thu Jul 23, 2009 9:37 am Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
Thanks for the reply. This is my first attempt at using a script.
I tried:
session:autoHangup(0) or session:autoHangup(false)
but got an error:
2009-07-23 07:19:09.652238 [ERR] mod_lua.cpp:182 /usr/local/freeswitch/scripts/inbound_calls.lua:29: attempt to call method 'autoHangup' (a nil value)
stack traceback:
/usr/local/freeswitch/scripts/inbound_calls.lua:29: in main chunk
I looked at the documentation and tried:
session:setAutoHangup(false)
and the script proceeded without error. However, looking at the log, I do not see the setAutoHangup being called. Also, when pressing *, I get a fast, busy signal.
I have pasted the script and log at http://pastebin.freeswitch.org/9836
Thanks again, Lars
From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Anthony Minessale
Sent: Wednesday, July 22, 2009 4:33 PM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] Asterisk key during message hangs up call
you are using a channel created with a script and you did not set
js
session.autoHangup(0)
lua
session:autoHangup(0)
so when the * makes the call transfer the script kills the channel.
On Wed, Jul 22, 2009 at 3:13 PM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
Brian,
When calling into FreeSWITCH and pressing * during the greeting, the call immediately hangs up.
It used to ask for the mailbox number to retrieve messages. It no longer works. I don’t know if my dialplan is causing the error or something in FreeSWITCH has changed.
Any ideas?
http://pastebin.freeswitch.org/9803
Thanks, Lars
_______________________________________________
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
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Thu Jul 23, 2009 9:55 am Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
I meant to pick one based on whichever lang you were using not to literally write what i said.
anyway, yes so now you solved your autoHangup
make a new debug trace like the one you looked at before now which should be different.
On Thu, Jul 23, 2009 at 9:23 AM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
Quote: |
Thanks for the reply. This is my first attempt at using a script.
I tried:
session:autoHangup(0) or session:autoHangup(false)
but got an error:
2009-07-23 07:19:09.652238 [ERR] mod_lua.cpp:182 /usr/local/freeswitch/scripts/inbound_calls.lua:29: attempt to call method 'autoHangup' (a nil value)
stack traceback:
/usr/local/freeswitch/scripts/inbound_calls.lua:29: in main chunk
I looked at the documentation and tried:
session:setAutoHangup(false)
and the script proceeded without error. However, looking at the log, I do not see the setAutoHangup being called. Also, when pressing *, I get a fast, busy signal.
I have pasted the script and log at http://pastebin.freeswitch.org/9836
Thanks again, Lars
From: freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org) [mailto:freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)] On Behalf Of Anthony Minessale
Sent: Wednesday, July 22, 2009 4:33 PM
To: freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)
Subject: Re: [Freeswitch-users] Asterisk key during message hangs up call
you are using a channel created with a script and you did not set
js
session.autoHangup(0)
lua
session:autoHangup(0)
so when the * makes the call transfer the script kills the channel.
On Wed, Jul 22, 2009 at 3:13 PM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
Brian,
When calling into FreeSWITCH and pressing * during the greeting, the call immediately hangs up.
It used to ask for the mailbox number to retrieve messages. It no longer works. I don’t know if my dialplan is causing the error or something in FreeSWITCH has changed.
Any ideas?
http://pastebin.freeswitch.org/9803
Thanks, Lars
_______________________________________________
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
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
_______________________________________________
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
|
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
larclap at yahoo.com Guest
|
Posted: Thu Jul 23, 2009 1:23 pm Post subject: [Freeswitch-users] Asterisk key during message hangs up call |
|
|
Your message made me look at the documentation, which was helpful.
http://pastebin.freeswitch.org/9838
When I press *, I get a busy signal.
Please disregard the USER_NOT_REGISTERED error in the log; one of the endpoints I bridged to is off-line.
Thanks, Lars
From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Anthony Minessale
Sent: Thursday, July 23, 2009 7:41 AM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] Asterisk key during message hangs up call
I meant to pick one based on whichever lang you were using not to literally write what i said.
anyway, yes so now you solved your autoHangup
make a new debug trace like the one you looked at before now which should be different.
On Thu, Jul 23, 2009 at 9:23 AM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
Thanks for the reply. This is my first attempt at using a script.
I tried:
session:autoHangup(0) or session:autoHangup(false)
but got an error:
2009-07-23 07:19:09.652238 [ERR] mod_lua.cpp:182 /usr/local/freeswitch/scripts/inbound_calls.lua:29: attempt to call method 'autoHangup' (a nil value)
stack traceback:
/usr/local/freeswitch/scripts/inbound_calls.lua:29: in main chunk
I looked at the documentation and tried:
session:setAutoHangup(false)
and the script proceeded without error. However, looking at the log, I do not see the setAutoHangup being called. Also, when pressing *, I get a fast, busy signal.
I have pasted the script and log at http://pastebin.freeswitch.org/9836
Thanks again, Lars
From: freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org) [mailto:freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)] On Behalf Of Anthony Minessale
Sent: Wednesday, July 22, 2009 4:33 PM
To: freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)
Subject: Re: [Freeswitch-users] Asterisk key during message hangs up call
you are using a channel created with a script and you did not set
js
session.autoHangup(0)
lua
session:autoHangup(0)
so when the * makes the call transfer the script kills the channel.
On Wed, Jul 22, 2009 at 3:13 PM, Lars Zeb <larclap@yahoo.com (larclap@yahoo.com)> wrote:
Brian,
When calling into FreeSWITCH and pressing * during the greeting, the call immediately hangs up.
It used to ask for the mailbox number to retrieve messages. It no longer works. I don’t know if my dialplan is causing the error or something in FreeSWITCH has changed.
Any ideas?
http://pastebin.freeswitch.org/9803
Thanks, Lars
_______________________________________________
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
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
_______________________________________________
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
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
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
|