RIGHT FROM THE WIKI:

For simple dialplans first edit features.conf as desired, then put this into your extensions.conf:

include => parkedcalls

If you have a more complex dialplan and want to be able to Goto() a more elaborate 'parkedcalls' handler then you'll need to be sure to include a handler for the 'i' priority to catch calls to parkinglot without call in them as well as the 's' priority to give timeouts somewhere to go, thus:
...
exten => somecontext,3,Goto(parkinglot,${ARG1},1)
...


[parkinglot]
exten => s,1,NoOp(once a parked call times out it will resume here)
...
include => parkedcalls
exten => i,1,Playback(pbx-invalidpark)
exten => i,2,Hangup
----- Original Message ----- From: "C F" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com>
Sent: Thursday, March 24, 2005 3:53 PM
Subject: Re: [Asterisk-Users] Parking



On Thu, 24 Mar 2005 16:04:58 -0500, Ronald Hartmann
<[EMAIL PROTECTED]> wrote:
Good Day list,

        My head is pounding from google overload.

        Does anyone know if there is any way to park a call and specify
the ("context", "Extension", and Priority) of where to call back to if
the call times out and is parked too long?

        ParkAndAnnounce does this feature, however I do not like that it
has to call you back to announce the location.
If this is the only prolem with ParkAndAnnounce then just don't
announe it, use it like this:
ParkAndAnnounce(pbx-transfer:PARKED|7200|Console/DSP|${CONTEXT},${EXTEN},${PRI})
this will announce it over your speakers, but if you don't have
speakers it will not announce. There is no other way to do it since
this is a blind transfer, the call is terminated and no sound can
play.
_______________________________________________
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
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 To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to