]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
We appear to have documented tz= in the [general] section of voicemail.conf,
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 9 Dec 2008 21:53:25 +0000 (21:53 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 9 Dec 2008 21:53:25 +0000 (21:53 +0000)
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

apps/app_voicemail.c

index 24df8c6cbd09df2d21a8f205180c7b803a18dd44..b0c12eef8dc5f55dcd3ad94c1f2891144f67be02 100644 (file)
@@ -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"))) {