Page 446 - Asterisk™: The Future of Telephony
P. 446

Connects the caller to the parked call in the parking space identified by parkingslot.
               This application is always registered internally and does not need to be explicitly added
               in to the dialplan, although you should include the parkedcalls context.
                   ; pick up the call parked in parking space 701
                   exten => 123,1,Answer()
                   exten => 123,2,ParkedCall(701)
               See Also

               Park(), ParkAndAnnounce()

               PauseMonitor()                                      Suspends monitoring of a channel

               PauseMonitor()

               Temporarily suspends the monitoring (recording) of the current channel
                   exten => 123,1,Answer()
                   exten => 123,n,Monitor(wav,monitor_test)
                   exten => 123,n,Playback(demo-congrats)
                        ; temporarily pause the monitoring while we gather some secret info
                   exten => 123,n,PauseMonitor()
                   exten => 123,n,Read(NEWPASS,vm-newpassword)
                   exten => 123,n,SayDigits(${NEWPASS})
                   exten => 123,n,UnpauseMonitor()
                   exten => 123,n,Dial(${JOHN})

               See Also
               Monitor(), StopMonitor(), UnpauseMonitor()


               PauseQueueMember()                     Temporarily blocks a queue member from receiving calls
               PauseQueueMember([queuename],interface[,options])

               Pauses the specified queue interface. This prevents any calls from being distributed
               from the queue to the interface until it is unpaused by the UnpauseQueueMember() ap-
               plication or the Manager Interface. If no queuename is given, the interface is paused in
               every queue it is a member of.
               This application sets a channel variable named PQMSTATUS to either PAUSED or NOTFOUND
               upon completion.

               If the options parameter is set to j and the interface is not in the named queue, or if
               no queue is given and the interface is not in any queue, it will jump to priority n+101
               (where n is the current priority), if it exists.
                   exten => 123,1,PauseQueueMember(,SIP/300)
                   exten => 124,1,UnpauseQueueMember(,SIP/300)



               418 | Appendix B: Application Reference
   441   442   443   444   445   446   447   448   449   450   451