I am attempting to convert my base config from extensions.conf to extensions.ael to give me more flexibility in the native dialplan when working with things like astjab.org. Looking at the config page:
voip-info.org/wiki/view/Asterisk+AEL
It says to do switches this way:
[quote=“Asterisk Wiki”]context default {
switches {
DUNDi/e164;
IAX2/box5;
};
eswitches {
IAX2/context@${CURSERVER};
};
};[/quote]
But when I try to do it this way:
[quote=“My extensions.ael”]context std_ob {
switches {
Realtime/std_ob@realtime_ext
};
};[/quote]
It registers the context in the diaplan without the switch, like this:
[quote=“Asterisk CLI extensions.ael”][ Context ‘std_ob’ created by ‘pbx_ael’ ]
[/quote]
When it should look like this:
[quote=“Asterisk CLI from extensions.conf”][ Context ‘std_ob’ created by ‘pbx_config’ ]
Alt. Switch => ‘Realtime/std_ob@realtime_ext’ [pbx_config][/quote]
Does AEL support calling a switch to Realtime today?