]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove deprecated syntax from sample ael file
authorTilghman Lesher <tilghman@meg.abyt.es>
Sat, 13 Oct 2007 15:26:01 +0000 (15:26 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Sat, 13 Oct 2007 15:26:01 +0000 (15:26 +0000)
Reported and patched by: dimas
Closes issue #10967

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@85536 65c4cc65-6c06-0410-ace0-fbb531ad65f3

configs/extensions.ael.sample

index 59bd4bd345b31e782d962e670813cc72ce91f9b8..e181869b43783d89fb94df3a51d559cfa8baea05 100644 (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;
 //        };
 //       };