Displaying 5 results from an estimated 5 matches for "agent007".
2011 Jan 10
0
No subject
...ut since you are using an AGI to control the Queue
command instead of using it from the dialplan, you have more control over
this problem than you realize. For simplicity of illustration, let's say
your AGI simply wants to take a call and send it to the next agent in the
queue. Your Agents are Agent007, AgentQ and AgentM. Because you did the
Polycom transfer from Agent007 to pussygalore, Agent007 is marked as busy in
the queue although the call is no longer active for 007. One possible
workaround would be to have a duplicate "bail queue" set up the same way.
If my AGI does a "core...
2004 Mar 30
1
Manager Interface "Action: Originate" changed
...n 2/23 and 3/18.
I have a 2/23/04 CVS installation (cvs checkout -r v1-0_stable asterisk
) that allows me to make calls like this using the Manager Interface on
port 5038.
action: login
login: admin
secret: mypass
action: originate
exten: 200
context: stations
channel: SIP/agent007
I have a 3/18/04 CVS installation that does NOT work the same way.
Entering the same information in spits out....
Response: Error
Message: Originate with 'Exten' requires 'Context' and 'Priority'
So I've tried adding a priority of 1, like this:
action: orig...
2011 Feb 23
2
REFER and dialplan broken (as documented in chan_sip.c on line 11951)
There is a problem when transferring calls using REFER, asterisk does not
notify dialplan. I've been told to use AMI as a workaround to notify my
dialplan/routing program but that would require a huge change to our
software. I was wondering if there is any intention of fixing this problem.
Here is issue as stated in chan_sip.c
"this is currently broken as we have no way of telling the
2004 Mar 31
0
Manager Interface "Action: Originate" change d
...n 2/23 and 3/18.
I have a 2/23/04 CVS installation (cvs checkout -r v1-0_stable asterisk
) that allows me to make calls like this using the Manager Interface on
port 5038.
action: login
login: admin
secret: mypass
action: originate
exten: 200
context: stations
channel: SIP/agent007
I have a 3/18/04 CVS installation that does NOT work the same way.
Entering the same information in spits out....
Response: Error
Message: Originate with 'Exten' requires 'Context' and 'Priority'
So I've tried adding a priority of 1, like this:
action: orig...
2004 Mar 28
3
two-stage dialing
I am trying implement two-stage dialing.
Scenario is following:
1. * Dials SIP agent
2. SIP agent answer the phone and provide dial tone
3. * Sends DTMF string
4. "Bridge" channel with calling party
I thought that something like:
exten => _2XX,2,Dial_but_not_connect_(SIP/BYEXTENSION,10)
exten => _2XX,3,Wait,1
exten => _2XX,4,SendDTMF($DTMF_DIGITS)
Should do it.
Thank