Michael Loftis
2004-Oct-25 15:56 UTC
[Asterisk-Users] Agents allowed to transfer but * just hangs up!
Look can ANYONE help me with this! Turns our our $#@$#@$#@ asterisk has been hanging up on people soon as transfers happen! -- GPG/PGP --> 0xE736BD7E 5144 6A2D 977A 6651 DFBE 1462 E351 88B9 E736 BD7E
David McNett
2004-Oct-25 15:59 UTC
[Asterisk-Users] Agents allowed to transfer but * just hangs up!
On 25-Oct-2004, Michael Loftis wrote:> Look can ANYONE help me with this! Turns our our $#@$#@$#@ asterisk has > been hanging up on people soon as transfers happen!A good place to start is http://www.catb.org/~esr/faqs/smart-questions.html -- David McNett <nugget@slacker.com> http://slacker.com/~nugget/
Joseph
2004-Oct-25 16:08 UTC
[Asterisk-Users] Agents allowed to transfer but * just hangs up!
Michael Loftis wrote:> Look can ANYONE help me with this! Turns our ---- asterisk has > been hanging up on people soon as transfers happen! >What do you see in the console of asterisk when you do the transfer? You might want to turn debuging on to see what * is saying. Are you using # sign to transfer? Also, are you running current code? It can be frustrating. -- respectfully, Joseph --------------------
Robert Jackson
2004-Oct-25 17:58 UTC
[Asterisk-Users] Agents allowed to transfer but * just hangs up!
> -----Original Message----- > From: Michael Loftis [mailto:mloftis@wgops.com] > Sent: Monday, October 25, 2004 6:57 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] Agents allowed to transfer but * > just hangs up! > > > Look can ANYONE help me with this! Turns our our $#@$#@$#@ > asterisk has > been hanging up on people soon as transfers happen! >We had a similar problem using AgentCallBackLogin. We were specifying a context to AgentCallbackLogin and that context only had extensions defined for the agents' extensions. Since * uses the current context for transfers this can be a problem. The solution to all of this was to SetVar(TRANSFER_CONTEXT=<context that can transfer>) before you call Dial(<device>,20,t). Then * uses the context that you specified to use for transfers. Fixed a similar problem for us, Robert Jackson