Displaying 1 result from an estimated 1 matches for "parking_lot_nam".
Did you mean:
  parking_lot_name
  
2012 Feb 16
1
Park() ignores 'r' option which should disable music on hold in favour of ringing tone
...park it from the dialplan so that I can retrieve it later.  However, I don't want callers to be aware that they are being parked, so I want to play a ringing tone to the caller.  Park() is supposed to be able to do this:
  Park([timeout][,return_context[,return_exten[,return_priority[,options[,parking_lot_name]]]]])
  options
    r: Send ringing instead of MOH to the parked call.
    s: Silence announcement of the parking space number.
I've created an extension to test this with, here's what I have in extensions.conf:
exten => *10,1,Answer
exten => *10,n,Park(120000,special,*59,1,rs)
ext...