16b6df18f8
upgrade, see /usr/local/share/doc/asterisk/UPGRADE-1.6.txt Particular thanks to fgsch@, ian@ and Michiel van Baak for help and testing.
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();
|
|
};
|
|
};
|