dect
/
asterisk
Archived
13
0
Fork 0

(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: http://svn.digium.com/svn/asterisk/trunk@81441 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-09-04 14:28:13 +00:00
parent 441c634d0e
commit 9db3e103c3
1 changed files with 4 additions and 4 deletions

View File

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