From 8fac3e83341e89faa77912bff43f002319f1c901 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 9 Dec 2008 21:53:25 +0000 Subject: We appear to have documented tz= in the [general] section of voicemail.conf, without actually having implemented it. Oops. (Reported by Olivier on the -users list) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@162348 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_voicemail.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apps') diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 24df8c6cb..b0c12eef8 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -537,6 +537,7 @@ static char *app4 = "VMAuthenticate"; static AST_LIST_HEAD_STATIC(users, ast_vm_user); static AST_LIST_HEAD_STATIC(zones, vm_zone); +static char zonetag[80]; static int maxsilence; static int maxmsg; static int silencethreshold = 128; @@ -602,6 +603,7 @@ static void populate_defaults(struct ast_vm_user *vmu) ast_copy_string(vmu->callback, callcontext, sizeof(vmu->callback)); ast_copy_string(vmu->dialout, dialcontext, sizeof(vmu->dialout)); ast_copy_string(vmu->exit, exitcontext, sizeof(vmu->exit)); + ast_copy_string(vmu->zonetag, zonetag, sizeof(vmu->zonetag)); if (maxmsg) vmu->maxmsg = maxmsg; vmu->volgain = volgain; @@ -8665,6 +8667,9 @@ static int load_config(void) tmpread = tmpwrite + 1; } } + if ((s = ast_variable_retrieve(cfg, "general", "zonetag"))) { + ast_copy_string(zonetag, s, sizeof(zonetag)); + } if ((s = ast_variable_retrieve(cfg, "general", "pagersubject"))) pagersubject = ast_strdup(s); if ((s = ast_variable_retrieve(cfg, "general", "pagerbody"))) { -- cgit v1.2.3