Merge "Add echo test to asterisk"

This commit is contained in:
Jenkins 2015-10-24 23:17:41 +00:00 committed by Gerrit Code Review
commit 4879472db5

View File

@ -22,6 +22,14 @@ exten => _[67]XXX,1,Answer()
same => n,ConfBridge(${EXTEN},,,sample_user_menu)
same => n,Hangup()
; Echo test
exten => 5000,1,Answer()
same => n,Wait(1)
same => n,Playback(demo-echotest)
same => n,Echo()
same => n,Playback(demo-echodone)
same => n,Hangup()
; Easter egg -- spam on the keypad.
exten => 7726,1,Answer()
same => n,Wait(1)
@ -33,3 +41,6 @@ exten => _X.,1,Goto(s,1)
; Let someone call in to sip:conference@pbx.openstack.org
exten => conference,1,Goto(s,1)
; Let someone call in to sip:echo@pbx.openstack.org
exten => echo,1,Goto(5000,1)