aboutsummaryrefslogtreecommitdiffstats
path: root/configs/extensions.lua.sample
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-17 18:08:09 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-17 18:08:09 +0000
commit2f30a3a6e7ae5721ed086155a63f22c33c495382 (patch)
treef7eb76f243ca169acc08d6d90b25b1c191e421e3 /configs/extensions.lua.sample
parent2ee27fd87f55632e832d749c5fe6739a68aeb913 (diff)
Goodbye Zaptel, hello DAHDI. Removes Zaptel driver support with DAHDI. Configuration file and dialplan backwards compatability has been put in place where appropiate. Release announcement to follow.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@123332 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs/extensions.lua.sample')
-rw-r--r--configs/extensions.lua.sample10
1 files changed, 5 insertions, 5 deletions
diff --git a/configs/extensions.lua.sample b/configs/extensions.lua.sample
index a6ae60ca6..8aee734b4 100644
--- a/configs/extensions.lua.sample
+++ b/configs/extensions.lua.sample
@@ -1,13 +1,13 @@
CONSOLE = "Console/dsp" -- Console interface for demo
---CONSOLE = "Zap/1"
+--CONSOLE = "DAHDI/1"
--CONSOLE = "Phone/phone0"
IAXINFO = "guest" -- IAXtel username/password
--IAXINFO = "myuser:mypass"
-TRUNK = "Zap/G2"
+TRUNK = "DAHDI/G2"
TRUNKMSD = 1
-- TRUNK = "IAX2/user:pass@provider"
@@ -92,8 +92,8 @@ TRUNKMSD = 1
--
-- Dialplan applications can be accessed through the global 'app' table.
--
--- app.Dial("Zap/1")
--- app.dial("Zap/1")
+-- app.Dial("DAHDI/1")
+-- app.dial("DAHDI/1")
--
-- More examples can be found below.
--
@@ -106,7 +106,7 @@ TRUNKMSD = 1
--
function outgoing_local(c, e)
- app.dial("zap/1/" .. e, "", "")
+ app.dial("DAHDI/1/" .. e, "", "")
end
function demo_instruct()