mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-05 12:53:45 +00:00
basic-pbx: Bring forward queue configuration from 13
Original commit: cfbf5fbe91
Change-Id: I34a841d73c429ca8d944481f8dccb756ee231c9c
This commit is contained in:
committed by
Sean Bright
parent
ddb2c90713
commit
85c7326d08
@@ -36,6 +36,20 @@ exten = 2565551234,1,Verbose(1, "User ${CALLERID(num)} dialed into remote voicem
|
||||
same = n,VoiceMailMain(example)
|
||||
same = n,Hangup()
|
||||
|
||||
; Extension to queue for sales.
|
||||
; The queue has a 300 second timeout.
|
||||
exten = 2565551200,1,Verbose(1, "User ${CALLERID(num)} dialed the sales queue.")
|
||||
same = n,Answer()
|
||||
same = n,Queue(sales,,,,300)
|
||||
same = n,Goto(operator,1)
|
||||
|
||||
; Extension to queue for a customer advocate.
|
||||
; The queue has a 1200 second timeout.
|
||||
exten = 2565551250,1,Verbose(1, "User ${CALLERID(num)} dialed the customer advocate queue.")
|
||||
same = n,Answer()
|
||||
same = n,Queue(customer_advocate,,,,1200)
|
||||
same = n,Goto(operator,1)
|
||||
|
||||
[Dialing-Errors]
|
||||
; Handle any extensions dialed internally that don't otherwise exist.
|
||||
; Comment out or remove this extension if you would rather have the calls
|
||||
|
||||
Reference in New Issue
Block a user