aboutsummaryrefslogtreecommitdiffstats
path: root/configs/extensions.conf.sample
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-27 05:45:52 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-27 05:45:52 +0000
commitb0d3b6a03575adcb353472c230c7bd4d14342dc6 (patch)
tree883768e61f958ea28cb0d38d79caa94da5ce1462 /configs/extensions.conf.sample
parent161e38b3d32572ebf435c36f8660d8539ca9a783 (diff)
use Set instead of SetVar in the sample so that we don't get warnings when
running the demo :-) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6235 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs/extensions.conf.sample')
-rwxr-xr-xconfigs/extensions.conf.sample6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/extensions.conf.sample b/configs/extensions.conf.sample
index d106b5be0..e84597481 100755
--- a/configs/extensions.conf.sample
+++ b/configs/extensions.conf.sample
@@ -343,8 +343,8 @@ exten => a,1,VoicemailMain(${ARG1}) ; If they press *, send the user into Voi
;
exten => s,1,Wait,1 ; Wait a second, just for fun
exten => s,n,Answer ; Answer the line
-exten => s,n,SetVar(TIMEOUT(digit)=5) ; Set Digit Timeout to 5 seconds
-exten => s,n,SetVar(TIMEOUT(response)=10) ; Set Response Timeout to 10 seconds
+exten => s,n,Set(TIMEOUT(digit)=5) ; Set Digit Timeout to 5 seconds
+exten => s,n,Set(TIMEOUT(response)=10) ; Set Response Timeout to 10 seconds
exten => s,n(restart),BackGround(demo-congrats) ; Play a congratulatory message
exten => s,n(instruct),BackGround(demo-instruct) ; Play some instructions
exten => s,n,WaitExten ; Wait for an extension to be dialed.
@@ -352,7 +352,7 @@ exten => s,n,WaitExten ; Wait for an extension to be dialed.
exten => 2,1,BackGround(demo-moreinfo) ; Give some more information.
exten => 2,n,Goto(s,instruct)
-exten => 3,1,SetVar(LANGUAGE()=fr) ; Set language to french
+exten => 3,1,Set(LANGUAGE()=fr) ; Set language to french
exten => 3,n,Goto(s,restart) ; Start with the congratulations
exten => 1000,1,Goto(default,s,1)