(closes issue #10633)

Reported by: pabelanger
Patches:
      extensions.ael.sample.patch uploaded by pabelanger (license 224)
Update extensions.ael.sample with voicemail and | changes.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81441 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2007-09-04 14:28:13 +00:00
parent 3213f6dc2d
commit 944352251d

View File

@@ -309,10 +309,10 @@ macro ael-std-exten-ael( ext , dev ) {
Dial(${dev}/${ext},20);
switch(${DIALSTATUS}) {
case BUSY:
Voicemail(b${ext});
Voicemail(${ext},b);
break;
default:
Voicemail(u${ext});
Voicemail(${ext},u);
};
catch a {
VoiceMailMain(${ext});
@@ -405,10 +405,10 @@ context ael-default {
// Dial(${HINT}/5245},20,rtT); // Use hint as listed
// switch(${DIALSTATUS}) {
// case BUSY:
// Voicemail(b6245);
// Voicemail(6245,b);
// return;
// default:
// Voicemail(u6245);
// Voicemail(6245,u);
// return;
// };
// };