From 45a2f4d420e4c9aa981b92443033af7a101daef0 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 4 Jan 2013 20:42:40 +0000 Subject: [PATCH] Disable mod_lcr, mod_valet_parking, mod_voicemail, and mod_voicemail_ivr by default. Enable mod_memcache by default. --- includes/classes/switch_modules.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/includes/classes/switch_modules.php b/includes/classes/switch_modules.php index 3a4b5eb1ca..bfb33f5652 100644 --- a/includes/classes/switch_modules.php +++ b/includes/classes/switch_modules.php @@ -205,8 +205,8 @@ echo $mod->dir."\n"; $mod['module_label'] = 'Directory'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'Dial by name directory.'; - $mod['module_enabled'] = 'true'; - $mod['module_default_enabled'] = 'true'; + $mod['module_enabled'] = 'false'; + $mod['module_default_enabled'] = 'false'; break; case "mod_distributor": $mod['module_label'] = 'Distributor'; @@ -331,8 +331,8 @@ echo $mod->dir."\n"; $mod['module_label'] = 'LCR'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'Least cost routing.'; - $mod['module_enabled'] = 'true'; - $mod['module_default_enabled'] = 'true'; + $mod['module_enabled'] = 'false'; + $mod['module_default_enabled'] = 'false'; break; case "mod_local_stream": $mod['module_label'] = 'Local Stream'; @@ -366,8 +366,8 @@ echo $mod->dir."\n"; $mod['module_label'] = 'Memcached'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'API for memcached.'; - $mod['module_enabled'] = 'false'; - $mod['module_default_enabled'] = 'false'; + $mod['module_enabled'] = 'true'; + $mod['module_default_enabled'] = 'true'; break; case "mod_native_file": $mod['module_label'] = 'Native File'; @@ -610,22 +610,22 @@ echo $mod->dir."\n"; $mod['module_label'] = 'Valet Parking'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'Call parking'; - $mod['module_enabled'] = 'true'; - $mod['module_default_enabled'] = 'true'; + $mod['module_enabled'] = 'false'; + $mod['module_default_enabled'] = 'false'; break; case "mod_voicemail": $mod['module_label'] = 'Voicemail'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'Full featured voicemail module.'; - $mod['module_enabled'] = 'true'; - $mod['module_default_enabled'] = 'true'; + $mod['module_enabled'] = 'false'; + $mod['module_default_enabled'] = 'false'; break; case "mod_voicemail_ivr": $mod['module_label'] = 'Voicemail IVR'; $mod['module_category'] = 'Applications'; $mod['module_description'] = 'Voicemail IVR interface.'; - $mod['module_enabled'] = 'true'; - $mod['module_default_enabled'] = 'true'; + $mod['module_enabled'] = 'false'; + $mod['module_default_enabled'] = 'false'; break; case "mod_xml_cdr": $mod['module_label'] = 'XML CDR';