I am having trouble getting park to work with SIP, I have these config files: /etc/asterisk/parking.conf [general] parkext => 8540 parkpos => 8541-8555 context => parkedcalls parkingtime => 45 /etc/asterisk/extensions.conf include => parkedcalls include => default [default] exten => 3874,1,Dial(SIP/3874|20|tT) Do I need something else somewhere? Is anyone using park and SIP. To use it I should be able to hit "#" then get a prompt?
SIP does not yet support parking unless you do "#transfer" support. The reason is that once you have done a transfer in SIP, the original call is gone, so there is no way to announce where the call has been parked. Mark On Fri, 7 Mar 2003, James O. Sizemore III wrote:> I am having trouble getting park to work > with SIP, I have these config files: > > /etc/asterisk/parking.conf > [general] > parkext => 8540 > parkpos => 8541-8555 > context => parkedcalls > parkingtime => 45 > > /etc/asterisk/extensions.conf > include => parkedcalls > include => default > [default] > exten => 3874,1,Dial(SIP/3874|20|tT) > > Do I need something else somewhere? > Is anyone using park and SIP. > > To use it I should be able to hit "#" > then get a prompt? > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users at lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >
I got some time this week end to play with this. By add the pickup lines in extensions.conf: ; ;Parked calls ; extern => 701,1,ParkedCall(701) extern => 702,1,ParkedCall(702) extern => 703,1,ParkedCall(703) extern => 704,1,ParkedCall(704) extern => 705,1,ParkedCall(705) extern => 706,1,ParkedCall(706) extern => 707,1,ParkedCall(707) extern => 708,1,ParkedCall(708) extern => 709,1,ParkedCall(709) extern => 710,1,ParkedCall(710) I got parked calls to work with SIP. The instruction seem to indicate I would not need the last step. <shrug> James O. Sizemore III wrote:> I am having trouble getting park to work > with SIP, I have these config files: > > /etc/asterisk/parking.conf > [general] > parkext => 700 > parkpos => 701-710 > context => parkedcalls > ;parkingtime => 45 > > /etc/asterisk/extensions.conf > include => parkedcalls > include => default > [default] > extern => 3874,1,Dial(SIP/3874|20|tT) > > Do I need something else somewhere? > Is anyone using park and SIP. > > To use it I should be able to hit "#" > then get a prompt? > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users
Thanks, P.S. What is the URL to your wish list? <smile> Mark Spencer wrote:>SIP does not yet support parking unless you do "#transfer" support. The >reason is that once you have done a transfer in SIP, the original call is >gone, so there is no way to announce where the call has been parked. > >Mark > >On Fri, 7 Mar 2003, James O. Sizemore III wrote: > > > >>I am having trouble getting park to work >>with SIP, I have these config files: >> >>/etc/asterisk/parking.conf >>[general] >>parkext => 8540 >>parkpos => 8541-8555 >>context => parkedcalls >>parkingtime => 45 >> >>/etc/asterisk/extensions.conf >>include => parkedcalls >>include => default >>[default] >>exten => 3874,1,Dial(SIP/3874|20|tT) >> >>Do I need something else somewhere? >>Is anyone using park and SIP. >> >>To use it I should be able to hit "#" >>then get a prompt? >> >> >>_______________________________________________ >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >> >> >> > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users > >
If you have "parkedcalls" included in the context your phone is in, that should be sufficient. "show dialplan" should show you what Asterisk actually believes your dialplan to be. Mark On Sun, 16 Mar 2003, James Sizemore wrote:> I got some time this week end to play with > this. By add the pickup lines in > extensions.conf: > ; > ;Parked calls > ; > extern => 701,1,ParkedCall(701) > extern => 702,1,ParkedCall(702) > extern => 703,1,ParkedCall(703) > extern => 704,1,ParkedCall(704) > extern => 705,1,ParkedCall(705) > extern => 706,1,ParkedCall(706) > extern => 707,1,ParkedCall(707) > extern => 708,1,ParkedCall(708) > extern => 709,1,ParkedCall(709) > extern => 710,1,ParkedCall(710) > > I got parked calls to work with SIP. > The instruction seem to indicate I > would not need the last step. <shrug> > > > James O. Sizemore III wrote: > > > I am having trouble getting park to work > > with SIP, I have these config files: > > > > /etc/asterisk/parking.conf > > [general] > > parkext => 700 > > parkpos => 701-710 > > context => parkedcalls > > ;parkingtime => 45 > > > > /etc/asterisk/extensions.conf > > include => parkedcalls > > include => default > > [default] > > extern => 3874,1,Dial(SIP/3874|20|tT) > > > > Do I need something else somewhere? > > Is anyone using park and SIP. > > > > To use it I should be able to hit "#" > > then get a prompt? > > > > > > _______________________________________________ > > Asterisk-Users mailing list > > Asterisk-Users@lists.digium.com > > http://lists.digium.com/mailman/listinfo/asterisk-users > > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >