summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2011-06-14 12:50:01 +0000
committerTed Trask <ttrask01@yahoo.com>2011-06-14 12:50:01 +0000
commit443917b6d235bc6cb10e2be2c5de190ac3fcad07 (patch)
treeac4abc4cde2436d069d80138d9bd394a03b4fa90 /templates
parent74470b8a2a2fca44369100abf02fc16f5f15e82f (diff)
downloadacf-provisioning-443917b6d235bc6cb10e2be2c5de190ac3fcad07.tar.bz2
acf-provisioning-443917b6d235bc6cb10e2be2c5de190ac3fcad07.tar.xz
Added in one mailbox parameter, supported on Polycom
Diffstat (limited to 'templates')
-rw-r--r--templates/polycom-template.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/polycom-template.lua b/templates/polycom-template.lua
index c7bf141..199f7ff 100644
--- a/templates/polycom-template.lua
+++ b/templates/polycom-template.lua
@@ -38,6 +38,7 @@
forwarding = boolean
hotlinedestination = string
hotlineenable = boolean
+ mailbox = string
speeddialenable = boolean
}
--]]
@@ -248,6 +249,9 @@ if values.services then
if values.services.hotlineenable then
enable.hotline = true
end
+ if values.services.mailbox then
+ xml_attr({ 'msg.mwi.1.subscribe' }, values.services.mailbox)
+ end
-- set local contact directory to be readonly or readwrite
xml_attr({ 'dir.local.readonly' }, values.services.speeddialenable)
end