Files
asterisk/configs/extensions.ael.sample
Kevin P. Fleming eea9249eda correct syntax error
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5958 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2005-06-21 19:57:18 +00:00

63 lines
1.0 KiB
Plaintext
Executable File

//
// Example AEL config file
//
macro std-exten-ael( ext , dev ) {
Dial(${ext}/${dev},20);
switch(${DIALSTATUS}) {
case BUSY:
Voicemail(b${ext});
break;
default:
Voicemail(u${ext});
};
catch a {
VoiceMailMain(${ext});
return;
};
};
context ael-demo {
s => {
Wait(1);
Answer();
TIMEOUT(digit)=5;
TIMEOUT(response)=10;
restart:
Background(demo-congrats);
instructions:
for (x=0; ${x} < 3; x=${x} + 1) {
Background(demo-instruct);
WaitExten();
};
};
2 => {
Background(demo-moreinfo);
goto instructions;
};
3 => {
LANGUAGE()=fr;
goto restart;
};
500 => {
Playback(demo-abouttotry);
Dial(IAX2/guest@misery.digium.com);
Playback(demo-nogo);
goto instructions;
};
600 => {
Playback(demo-echotest);
Echo();
Playback(demo-echodone);
goto instructions;
};
_1234 => &std-exten-ael(${EXTEN});
# => {
Playback(demo-thanks);
Hangup();
};
t => jump #;
i => Playback(invalid);
};