18 lines
535 B
Plaintext
18 lines
535 B
Plaintext
|
// $Id: extensions.ael.sample,v 1.1 2009/12/13 12:11:29 sthen Exp $
|
||
|
// Longer example available in ${TRUEPREFIX}/share/examples/asterisk/default
|
||
|
|
||
|
// This context is named "ael-default" to avoid a conflict with an
|
||
|
// existing old-style extensions.conf file; you may want to rename it
|
||
|
// to "default".
|
||
|
context ael-default {
|
||
|
*99 => {
|
||
|
VoiceMailMain(${CALLERIDNUM});
|
||
|
};
|
||
|
|
||
|
_XXX => {
|
||
|
Dial(SIP/${EXTEN},12,tr);
|
||
|
Voicemail(${EXTEN});
|
||
|
Hangup();
|
||
|
};
|
||
|
};
|