From: Tilghman Lesher Date: Tue, 9 Dec 2008 21:53:25 +0000 (+0000) Subject: We appear to have documented tz= in the [general] section of voicemail.conf, X-Git-Tag: 1.4.23-rc3~3^2~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5134bb74a9da060cf2656485742263214e9365b6;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/branches/1.4@162348 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 24df8c6cbd..b0c12eef8d 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"))) {