From b7424586a5ffd17a4127d8d96fe7d73e26784920 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 18 Jul 2013 19:31:35 +0000 Subject: [PATCH] Update the default extension This patch updates the default extension. This is what a caller would hit if they called sip:openstack.org (as opposed to sip:6000@openstack.org), or when they are calling in via the PSTN. It asks them to enter a conference number and then hit #. It will give up after 3 tries and just hang up. I moved the 'spam' playback that I originally had to only play if you enter the digits for spam (7726). Change-Id: Ia82b9b52766ee191e3fd6f20d4e3b7fbb56f1f5b --- .../files/pbx/asterisk/extensions.conf | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/modules/openstack_project/files/pbx/asterisk/extensions.conf b/modules/openstack_project/files/pbx/asterisk/extensions.conf index b41cfa4e6c..015fb1a38e 100644 --- a/modules/openstack_project/files/pbx/asterisk/extensions.conf +++ b/modules/openstack_project/files/pbx/asterisk/extensions.conf @@ -2,14 +2,27 @@ [public] -exten => s,1,Goto(spam,1) +exten => s,1,Answer() + same => n,Set(RETRIES=3) + same => n,Set(COUNT=0) + same => n,While($[${COUNT} < ${RETRIES}]) + same => n,Read(CONFNUM,conf-getconfno) + same => n,Verbose(3,${CHANNEL(name)} entered conference number: ${CONFNUM}) + same => n,GotoIf(${DIALPLAN_EXISTS(public,${CONFNUM},1)}?${CONFNUM},1) + same => n,Set(COUNT=$[${COUNT} + 1]) + same => n,ExecIf($[${COUNT} < ${RETRIES}]?Playback(conf-invalid)) + same => n,EndWhile() + same => n,Playback(vm-goodbye) + same => n,Hangup() ; Default setup for a Conference bridge. ; Conferences are 6000 - 6999 exten => _6XXX,1,Answer() same => n,ConfBridge(${EXTEN},,,sample_user_menu) + same => n,Hangup() -exten => spam,1,Answer() +; Easter egg -- spam on the keypad. +exten => 7726,1,Answer() same => n,Playback(spam) + same => n,Hangup() -exten => _X.,1,Goto(spam,1)