Displaying 20 results from an estimated 9000 matches similar to: "Development news :: New AEL and configuration system"
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
2006 Jan 06
0
--- AEL 2 --- Try it out!
Hello--
I've just written and submitted a new module for asterisk, to the
asterisk bug database.
See http://bugs.digium.com/view.php?id=6021
There is a file there you can download, AEL2v0.3.patch.bz2
and I created a wiki page: http://www.voip-info.org/wiki/view/Asterisk+AEL2
Why did I do it? Because I was very impressed with AEL, but the current
AEL compiler isn't real good at
2006 Apr 20
1
MeetAsterisk in Europe - register today!
Friends,
Beginning next week, I will travel around Europe to teach Asterisk -
the one day Meet Asterisk training.
MeetAsterisk is organized by Edvina in cooperation with Digium and
Voop. In many places, local Asterisk
equipment resellers participate and show their equipment.
This is the tour plan:
* Amsterdam April 26
* Copenhagen April 27
* Oslo April 28
* Paris May 3
* Brussels May 4
*
2007 Mar 06
0
Re: asterisk-users Digest, Vol 32, Issue 21
----------------------------------------------------------------------
Message: 1
Date: Tue, 6 Mar 2007 20:02:07 +0100
From: Olle E Johansson <oej@edvina.net>
Subject: [asterisk-users] Building a new voicemail system... Testers
needed!
To: Asterisk Non-Commercial Discussion Users Mailing List -
<asterisk-users@lists.digium.com>
Message-ID:
2006 May 19
1
Development news :: Smarter medialess calls!
Friends,
To update you on recent changes in svn trunk, I can inform you that
we now have ever smarter
ways to handle media streams in Asterisk than we do in 1.2 for the
IAX2 and SIP protocols.
* IAX2: Splitting signalling and media apart
Starting with the IAX2 protocol, we now have the ability to transfer
media streams to go directly
between IAX2 servers and keep the signalling path.
2008 Nov 05
1
AEL NoOp not working
Hi,
I've new to http://www.voip-info.org/wiki/view/Asterisk+AEL2
I'm using NoOp and Verbose functions inside extensions.ael.
Strangely, NoOp is not printing anything in Asterisk console while Verbose
is working.
Am I missing something obvious ?
Cheers
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Mar 10
3
Development news :: T38 passthrough support
Friends in the Asterisk.org community,
There is a lot of cool stuff going on in Asterisk development, things
that will change Asterisk and
make it work better in your organisation, make it easier to sell in
your area or give you more
consulting oppurtunities - in short, functionality that will make a
lot of sense for you users.
However, developers can't really get anywhere without a
2007 Mar 06
1
Building a new voicemail system... Testers needed!
Friends in the Asterisk community,
One thing I avoided working with for a long time is the Asterisk
voicemail code. One module in
Asterisk I've constantly been naming as one of the worst parts is
voicemail. One part of
Asterisk that I've been kind of avoiding during my trainings is
voicemail.
And there's where I've spent a lot of time recently... Life is strange.
Instead
2006 Jan 13
2
AEL2 -- The Future --
Call to Action!
For those who have the courage/ability, go grab an SVN copy of the
asterisk release, the HEAD version,
and my latest patch, from: http://bugs.digium.com/view.php?id=6021
Right now, the latest version of the patch is 0.10.
apply it to the SVN head version, and do a "make".
Read the Wiki on AEL2: http://www.voip-info.org/wiki/view/Asterisk+AEL2
Look at the examples
2006 May 16
0
Join the Asterisk Video Task Force if you're into video telephony development!
** Want to see who you're talking to? Video telephony is growing.
A couple of developers has formed the Asterisk Video Task Force in
order to improve the support for video telephony
in Asterisk for the 1.6 release this fall. There is already support
for video in the SIP and the IAX2 channel, but we need
to add more in order to improve the support, among other things add
video to H.323
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
2003 Oct 02
0
WINXP Messenger SIP Client (Good News, Bad News) WINXP authorization with secret
I had this same problem with WINXP WinMESS, (what a name mess) I
changed the Distro from Redhat 8.0 to Mandrake 9.1 and bam! It all
works!! Does anyone know of a problem with this and RH 8.0????
Are you running Redhat?? I now have Messenger working fine as well as
X-ten, Sipps, and some others.
I have standardized on Mandrake 9.1 and asterisk seams to have NO
problems.
REDHat 8.0 proved as
2009 Jul 10
1
Kate AEL syntax ?
Hi,
Is there something available to add AEL2 syntax highlighting support to Kate
?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090710/10576943/attachment.htm
2006 Oct 13
2
AEL Question
Hi, all. I'm making my first foray into AEL. I'm starting with a
simple macro, but I've already encountered an odd behaviour. I'm
wondering if someone can shed some insight:
Asterisk 1.2.9.1
macro newPlaceCallPSTN {
s => {
TIMEOUT(absolute)=7200;
NoOp(Analog Out List: ${ANALOGOUT});
ChanIsAvail(${ANALOGOUT});
NoOp(Available Out List:
2009 May 11
3
How to write custom functions in AEL2 ,
Hi,
I'm using asterisk 1.6.1 and AEL2.
I'm trying to find the best way to write my own custom functions ?
At the moment, I'm using this pattern (extensions.ael) :
context foo {
123 => {
&myfunc(123456);
NoOp(${GOSUB_RETVAL});
};
macro myfunc (arg) {
Return (${arg});
}
1. First, I keep getting warnings like
Warning: file /etc/asterisk/extensions.ael, line
2009 Jan 08
3
AEL and };
Hi!
All the AEL examples have a semicolon after the closing curly bracket, e.g:
context test {
1 => Hangup();
};
but without ; it works fine too, e.g:
context test {
1 => Hangup();
}
So - what is the reason for the ; after the closing curly bracket?
thanks
klaus
2006 Jun 06
0
What to do on a national celebration day? Test, test, test!
Today is Swedens national day - since a few years a holiday too.
We don't have a tradition on how to celebrate.
Sweden has not been to war for a very long time, so there's no real
spirit
for the country here - it's been aroundfor such a long time, so
what? :-)
Guess we have to learn from abroad, to get a celebration feeling like
July 4th in the US or May 17th
in Norway (from
2006 May 31
0
Asterisk Bootcamp in Europe :: June 12-16 and the Asterisk SIP Masterclass in Chicago, July 2006
** Asterisk Bootcamp in Stockholm, Sweden
The next Asterisk Training is the Edvina.net Asterisk Bootcamp - the
class we have been giving for over a year under the brand name
"Astricon Training". The same teacher, the same material and a new name.
All students have a PC and will install a fully working Asterisk PBX.
During the week, we will build a business PBX configuration as
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 May 31
2
AEL2 and CID
Does anyone know how to get CID working in AEL2 ?
In extensions.conf you can do:
exten => 111/666,1,PlayBack(demo-congrats)
exten => 111/666,2,Hangup()
exten => 111,1,PlayBack(demo-moreinfo)
exten => 111,2,Hangup()
and if callerid 666 dialed 111, they would get demo-congrats, everyone
else gets demo-moreinfo.
In AEL:
111 => {
Playback(demo-moreinfo);