aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authorlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-15 20:48:56 +0000
committerlmadsen <lmadsen@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-15 20:48:56 +0000
commit2c0eadba82964ab3e934e8c36b54f9095f23b5ef (patch)
treebc5e706ea7eb462b82b1eb1a1bc423bbdbe89120 /configs
parentc05eef13aaaf73bb791a5effdcef8262f16945aa (diff)
Update extensions.ael file to not overlap extensions.conf.
Updated the extensions.ael file so the global variables don't overlap those that we have in extensions.conf (sample files). This way unexpected things won't happed hopefully if both pbx_ael and res_config are loaded. (closes issue #17035) Reported by: pprindeville git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@252533 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/extensions.ael.sample28
1 files changed, 18 insertions, 10 deletions
diff --git a/configs/extensions.ael.sample b/configs/extensions.ael.sample
index ab8cdd854..18de98fbc 100644
--- a/configs/extensions.ael.sample
+++ b/configs/extensions.ael.sample
@@ -18,15 +18,23 @@
// function: ${ENV(VARIABLE)}
//
+// NOTE! NOTE! NOTE!
+// Asterisk by default will load both extensions.conf and extensions.ael files.
+// Upon loading these files the dialplans generated from both with be merged,
+// so you must make sure that you don't have any overlapping contexts or global
+// variables. If you do, then unexpected behavior may result when the data is
+// merged.
+// NOTE! NOTE! NOTE!
+
globals {
CONSOLE="Console/dsp"; // Console interface for demo
//CONSOLE=Zap/1
//CONSOLE=Phone/phone0
IAXINFO=guest; // IAXtel username/password
//IAXINFO="myuser:mypass";
- TRUNK="Zap/g2"; // Trunk interface
+ OUTBOUND-TRUNK="Zap/g2"; // Trunk interface
//
- // Note the 'g2' in the TRUNK variable above. It specifies which group (defined
+ // Note the 'g2' in the OUTBOUND-TRUNK variable above. It specifies which group (defined
// in chan_dahdi.conf) to dial, i.e. group 2, and how to choose a channel to use in
// the specified group. The four possible options are:
//
@@ -39,7 +47,7 @@ globals {
// R: use a round-robin search, starting at the next lowest channel than last
// time (aka. descending rotary hunt group).
//
- TRUNKMSD=1; // MSD digits to strip (usually 1 or 0)
+ OUTBOUND-TRUNKMSD=1; // MSD digits to strip (usually 1 or 0)
//TRUNK=IAX2/user:pass@provider
};
@@ -210,7 +218,7 @@ context ael-trunkint {
};
_9011. => {
&ael-dundi-e164(${EXTEN:4});
- Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
+ Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
};
};
@@ -223,7 +231,7 @@ context ael-trunkld {
};
_91NXXNXXXXXX => {
&ael-dundi-e164(${EXTEN:1});
- Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
+ Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
};
};
@@ -232,7 +240,7 @@ context ael-trunklocal {
// Local seven-digit dialing accessed through trunk interface
//
_9NXXXXXX => {
- Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
+ Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
};
};
@@ -241,10 +249,10 @@ context ael-trunktollfree {
// Long distance context accessed through trunk interface
//
- _91800NXXXXXX => Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
- _91888NXXXXXX => Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
- _91877NXXXXXX => Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
- _91866NXXXXXX => Dial(${TRUNK}/${EXTEN:${TRUNKMSD}});
+ _91800NXXXXXX => Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
+ _91888NXXXXXX => Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
+ _91877NXXXXXX => Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
+ _91866NXXXXXX => Dial(${OUTBOUND-TRUNK}/${EXTEN:${OUTBOUND-TRUNKMSD}});
};
context ael-international {