Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
1b6513c5
Commit
1b6513c5
authored
5 years ago
by
George Joseph
Committed by
Gerrit Code Review
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge "basic-pbx: Bring forward queue configuration from 13"
parents
b0b3bd62
ba64d682
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configs/basic-pbx/extensions.conf
+14
-0
14 additions, 0 deletions
configs/basic-pbx/extensions.conf
configs/basic-pbx/modules.conf
+1
-0
1 addition, 0 deletions
configs/basic-pbx/modules.conf
configs/basic-pbx/queues.conf
+19
-0
19 additions, 0 deletions
configs/basic-pbx/queues.conf
with
34 additions
and
0 deletions
configs/basic-pbx/extensions.conf
+
14
−
0
View file @
1b6513c5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
configs/basic-pbx/modules.conf
+
1
−
0
View file @
1b6513c5
...
...
@@ -14,6 +14,7 @@ load = app_verbose.so
load
=
app_voicemail
.
so
load
=
app_directory
.
so
load
=
app_confbridge
.
so
load
=
app_queue
.
so
;
Bridging
...
...
This diff is collapsed.
Click to expand it.
configs/basic-pbx/queues.conf
0 → 100644
+
19
−
0
View file @
1b6513c5
[
general
]
monitor
-
type
=
MixMonitor
;========================
Sales
Queue
==
;
Calls
all
sales
persons
in
a
ring
-
all
fashion
[
sales
]
strategy
=
ringall
member
=>
PJSIP
/
1109
;
Terry
Jules
-
Director
of
Sales
member
=>
PJSIP
/
1105
;
Garnet
Claude
-
Sales
Associate
member
=>
PJSIP
/
1112
;
Franny
Ocean
-
Sales
Associate
;=====================
Customer
Advocate
Queue
==
;
Calls
all
customer
advocates
in
a
ring
-
all
fashion
[
customer_advocate
]
strategy
=
ringall
member
=>
PJSIP
/
1101
;
Maria
Berny
-
Director
of
Customer
Experience
member
=>
PJSIP
/
1115
;
Dusty
Williams
-
Customer
Advocate
member
=>
PJSIP
/
1102
;
Tommy
Briar
-
Customer
Advocate
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment