Displaying 20 results from an estimated 10000 matches similar to: "AEL syntax consistency"
2019 Oct 11
3
clarification on gosub, macros and AEL
I'm trying to clarify my understand of gosub, macros and AEL.
My understanding is that macros using the Macro() application, which is
defined in extensions.conf by:
[macro-foo]
...
and called in extensions.conf with
exten => _9NXXNXXXXXX.,n,Macro(fastbusy)
is deprecated in favour of Gosub(). True so far?
But then there are "macro"s defined in extensions.ael:
macro foo() {
2012 Oct 31
1
Asterisk 11 and stdexten written in AEL invoked by pbx_config
Almost two years ago, a change between how AEL code is built into
Asterisk dialplan between minor versions made clear the need to
provide a sane entry point into AEL subroutines and that's how
AELSub() born.
With Asterisk 11 release, they way [stdexten] at extensions.conf is
invoked changed from Macro to Gosub using the 'missing context
feature' and this caused that any stdexten
2010 Jul 23
2
application call to Gosub affects flow of control, and needs to be re-written using AEL
Hi,
For some reason (outbound call tracking) I've got a few different
outbound call process (using a macro for queuemetrics logging, or direct
call)
i wanted to factorise the routing process so i came up with something
like the following. All in one it's working like expected, however
every "ael reload" command trigger a lot of warning like that
"application call
2011 Nov 14
0
Asterisk 1.6 AEL Macro vs GoSub
Hi,
I have recently run into the problem with macro implementation in AEL in Asterisk 1.6. I have some older AEL dialplan which runs on 1.4 but it does not on 1.6 and I'm not sure how to solve this correctly. Let me explain...
For example, in Asterisk 1.4 I have a macro like this:
macro read_digits(digits) {
Set(playlist=${SHELL(${PYTHON} ${SCRIPTS}/read_digits.py
2008 Dec 17
1
ael queue gosub already has PBX structure??
Hello,
I want that after client and queue member call would be established, cmd
queue runs some 'procedures' . So I am using cmd Queue option 'gosub'. This
is my example of ael :
context QUEUE {
_X. => {
Ringing();
Wait(4);
Answer();
Queue(${Queue},wr,,,60,,,check-record);
Hangup();
};
};
macro check-record() {
2011 May 05
1
ael context ~~s~~ in macros broke Dial() U() option in 1.6.2.17.2 and newer
Hi,
I think this must be a bug introduced with 1.6.2.17.something.
When I upgrade from asterisk-1.6.2.16.1 to asterisk-1.6.2.17.2 or 1.6.2.18,
my AEL Dial() commands with the "U" options fail with the following error:
[May 3 12:05:54] ERROR[6300] app_stack.c: Attempt to reach a non-existent
destination for gosub: (Context:screen, Extension:s, Priority:1)
Here are the segments
2013 Feb 24
2
AEL Macro are evil :-)
I just discover an "hidden" problem with AEL macro I want to have your
feedback. If you use a macro to dial out, like &dialout(${EXTEN}), the leg
extension will became ~~~~s~~~~ and if it happens you transfer the call,
that will be the callerid appearing on the other phone display.
I am just rewriting all the dialplan getting rid of the macro and using
gosub, even if asterisk is
2008 Oct 06
1
AEL and swap from macros to contexts
Hi, according to discussion on asterisk IRC, where people said, that
macros will be depracated, I tried to migrate from macros to contexts
and Gosub
but if I try to use gosub in extensions.ael, ael compiler complains,
that I shouln't use Gosub app,
but I can't find ael keyword, that will be Gosub equivalent, or can I
ignore this ael warnings? thanks
PJ
LOG: lev:3 file:pval.c
2008 Dec 02
0
Using Dial M option from extensions.ael [SOLVED]
2008/12/2 Philipp Kempgen <philipp.kempgen at amooma.de>
> Philipp Kempgen schrieb:
> > Olivier schrieb:
> >
> >> How can you use Dial application M(x) option from extensions.ael ?
> >> (As a reminder, this M(x) executes macro x when Dial called party
> answers).
> >>
> >> It seems to me that asterisk keeps looking for this macro in
>
2009 Oct 06
0
What happened to MACRO_EXTEN in AEL macros since 1.6?
Hi!
Since 1.6, when using AEL, macros are implemented using Gosub(). Is
there workaround to have MACRO_EXTEN also in this case?
regards
Klaus
PS: I know I could use something like
context fromSip {
11 => &myMacro(${EXTEN})
}
macro myMacro(MACRO_EXTEN) {
}
but isn't there some workaround to achieve compatibility with 1.4?
2010 Apr 02
1
Gosub replacement within AEL2 dialplans
Hello,
When reloading a diaplan (asterisk 1.6.1.X), I can see in console :
[Apr 2 09:02:00] WARNING[2217]: ael/pval.c:2522 check_pval_item: Warning:
file /etc/asterisk/extensions.ael, line 621-621: application call to Gosub
affects flow of control, and needs to be re-written using AEL if, while,
goto, etc. keywords instead!
What is then the recommended substitution for Gosub() application
2009 Dec 03
0
AEL, 1.6, CUT and commas
Hello,
How can you parse a comma separated list using function CUT and AEL ?
I've tried but it displays error message (though is seems to find the
correct value) :
STRING=101,102
VAL=${CUT(STRING,\,,1)};
NoOp(VAL is ${VAL});
Cheers
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Dec 03
0
AEL, 1.6, CUT and commas [SOLVED]
2009/12/3 Olivier <oza-4h07 at myamail.com>
> Hello,
>
> How can you parse a comma separated list using function CUT and AEL ?
>
> I've tried but it displays error message (though is seems to find the
> correct value) :
>
> STRING=101,102
> VAL=${CUT(STRING,\,,1)};
> NoOp(VAL is ${VAL});
>
> Cheers
>
Sorry for the noise but I mixed up with another
2019 Oct 15
4
clarification on gosub, macros and AEL
>>> Nobody has any information or opinions on any of this?
Personally, I don't think MACROS are going anywhere any time soon, so I have not bothered looking into a substitution.
As for ael; I've never used it.
Doug
2008 Dec 02
1
Using Dial M option from extensions.ael
Hi,
How can you use Dial application M(x) option from extensions.ael ?
(As a reminder, this M(x) executes macro x when Dial called party answers).
It seems to me that asterisk keeps looking for this macro in extensions.conf
and not in extensions.ael.
I tried both (and variations of those with ^ instead of ,) :
Dial(Local/${EXTEN:1},,M(mymacro(${EXTEN}));
2013 Aug 08
1
queue member ackcall - cpuspikes
hi!,
Asterisk Version:1.6.1.20
OS: CentOS release 5.3 (Final)
uname: 2.6.18-128.el5PAE #1 SMP Wed Jan 21 11:19:46 EST 2009 i686 i686 i386
GNU/Linux
Application: Queue
Specific Details: Obtain Acknowledgement from queue member before bridging
the caller.
Language: AEL
Similar Example:http://www.voip-info.org/wiki/view/Asterisk+tips+Queue+Member+ackcall
Scenario:
1. User calls in a General Number
2010 Aug 03
4
Dial() M parameter in 1.6.2.11-rc2
Hi,
I can't figure out what syntax to use with the Dial() "M" parameter
for the AEL parser to interpret properly. Creating an AEL
macro named "macro-screen()" partly works as a hack, but it must
not turn into a gosub properly, so I get warnings about the "return;".
Dial(...,tgM(&screen)) with the ael macro named "screen" does not work
2008 Dec 05
1
Gosubs broken since r160626 (1.6.0 SVN) ?
Hi all,
I've just upgraded to latest 1.6.0 SVN from a few days ago and my Gosubs
have stopped working.
This is from the verbose logs:
-- Executing [03333407271 at incoming-aaisp:4] GotoIf("IAX2/aaisp-3802",
"1?5:7") in new stack
-- Goto (incoming-aaisp,03333407271,5)
-- Executing [03333407271 at incoming-aaisp:5] Gosub("IAX2/aaisp-3802",
2006 Jun 21
0
AEL Status
Hello--
It's been a while since I wrote any updates about AEL/AEL2 to the users
list, and I thought it might be worthwhile to update everyone on what is
going on in respects to AEL.
What the heck is AEL? The Asterisk Extension Language. A higher level
language for extensions.conf, which will appear in the config file,
extensions.ael, in the /etc/asterisk/ (or equiv) directory. It provides
2009 May 08
0
Can't GOSUB_RESULT with Dial U() option ...
Hello,
I'm not understanding how to use GOSUB_RESULT in U() option from Dial app
(I'm using 1.6.1)
My extensions.ael is :
context mylocal {
2 => {
Dial(SIP/7530,,U(mynotify));
HangUp();
};
3 => {
Dial(SIP/7531);
HangUp();
};
};
macro mynotify () {
GOSUB_RESULT=ABORT;
};
I