Does anyone know if realtime extensions support the use of labels?
ie:
exten => acdpause,1, Answer
exten => acdpause,n, Wait,1
exten => acdpause,n, PauseQueueMember(|Agent/${CALLERIDNUM})
exten => acdpause,n, GotoIf($["${PQMSTATUS}" =
"PAUSED"]?paused:error)
exten => acdpause,n(paused), Playback(unavailable)
exten => acdpause,n, Hangup
exten => acdpause,n(error), Playback(an-error-has-occured)
exten => acdpause,n, Hangup
Do I just put the label in the extension column?
Doug.
Douglas Garstang wrote:> Does anyone know if realtime extensions support the use of labels? >I don't believe so. As I understand it, the dialplan parser internally converts n-type and labeled priorities to a straight numeric format, which is then used internally. Becuase the Realtime engine bypasses that parser, it has to have extensions in strict, old-style numeric priority order. If this isn't correct I'm sure someone will point it out. B.