Hello,
I am not able to jump to a label from inside a macro. The goto is made
inside a catch while the label is in the body of the macro:

macro recordMessage() {
     Answer();
   recordagain:
     Playback(after-the-tone);
     Playback(say-temp-msg-prs-pound);
     record(/tmp/${UNIQUEID}.wav);
   earagain:
     Playback(/tmp/${UNIQUEID});
     Background(press-1);
     Background(to-hear-msg-again);
     Background(press-2);
     Background(to-rerecord-yr-message);
     Background(press-pound-save-changes);
     WaitExten(15);

     catch 1 {
           goto earagain;
     };

     catch 2 {
           goto recordagain;
     };

     catch # {
           AGI(uploadMedia.php,/tmp/${UNIQUEID}.wav,wav,${TENANTID});
           Playback(your-msg-has-been-saved);
     };
};

The "goto earagain" fails because the label is searched inside the 1
extension.

How can I jump correctly to the label?

Leandro
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to