add support for alternate voicemail numbers so you can subscribe to different mailboxes. requires user to create their own dialplan to support it.
This commit is contained in:
parent
10f0e81e06
commit
cd6fecc70f
|
|
@ -104,6 +104,13 @@
|
||||||
$array[$x]['default_setting_enabled'] = 'false';
|
$array[$x]['default_setting_enabled'] = 'false';
|
||||||
$array[$x]['default_setting_description'] = '';
|
$array[$x]['default_setting_description'] = '';
|
||||||
$x++;
|
$x++;
|
||||||
|
$array[$x]['default_setting_category'] = 'provision';
|
||||||
|
$array[$x]['default_setting_subcategory'] = 'voicemail_number';
|
||||||
|
$array[$x]['default_setting_name'] = 'text';
|
||||||
|
$array[$x]['default_setting_value'] = '*97';
|
||||||
|
$array[$x]['default_setting_enabled'] = 'false';
|
||||||
|
$array[$x]['default_setting_description'] = '';
|
||||||
|
$x++;
|
||||||
$orm = new orm;
|
$orm = new orm;
|
||||||
$orm->name('default_settings');
|
$orm->name('default_settings');
|
||||||
$orm->save($array[0]);
|
$orm->save($array[0]);
|
||||||
|
|
@ -166,4 +173,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
||||||
|
|
@ -143,7 +143,7 @@ account.1.advanced.timer_t1 =
|
||||||
account.1.advanced.timer_t2 =
|
account.1.advanced.timer_t2 =
|
||||||
account.1.advanced.timer_t4 =
|
account.1.advanced.timer_t4 =
|
||||||
|
|
||||||
voice_mail.number.1 = *97
|
voice_mail.number.1 = {$voicemail_number}
|
||||||
|
|
||||||
|
|
||||||
#######################################################################################
|
#######################################################################################
|
||||||
|
|
@ -3034,4 +3034,4 @@ expansion_module.1.key.{$row.device_key_id}.xml_phonebook =
|
||||||
#expansion_module.2.key.1.label =
|
#expansion_module.2.key.1.label =
|
||||||
#expansion_module.2.key.1.xml_phonebook =
|
#expansion_module.2.key.1.xml_phonebook =
|
||||||
#expansion_module.2.key.1.type =
|
#expansion_module.2.key.1.type =
|
||||||
#expansion_module.2.key.1.label =
|
#expansion_module.2.key.1.label =
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue