[Asterisk-cvs] asterisk/apps app_voicemail.c,1.172,1.173
markster at lists.digium.com
markster at lists.digium.com
Fri Nov 19 00:47:02 CST 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv1034/apps
Modified Files:
app_voicemail.c
Log Message:
Add option to use directory for forward/compose (bug #2025)
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -d -r1.172 -r1.173
--- app_voicemail.c 13 Nov 2004 16:13:07 -0000 1.172
+++ app_voicemail.c 19 Nov 2004 05:47:21 -0000 1.173
@@ -290,11 +290,11 @@
static char emailtitle[100];
static char charset[32] = "ISO-8859-1";
+static int directory_forward;
static char adsifdn[4] = "\x00\x00\x00\x0F";
static char adsisec[4] = "\x9B\xDB\xF7\xAC";
static int adsiver = 1;
-
STANDARD_LOCAL_USER;
LOCAL_USER_DECL;
@@ -2218,7 +2218,7 @@
static int forward_message(struct ast_channel *chan, char *context, char *dir, int curmsg, struct ast_vm_user *sender, char *fmt,int flag)
{
- char username[70];
+ char username[70]="";
char sys[256];
char todir[256];
int todircount=0;
@@ -2234,12 +2234,88 @@
char *stringp, *s;
int saved_messages = 0, found = 0;
int valid_extensions = 0;
+
while (!res && !valid_extensions) {
- res = ast_streamfile(chan, "vm-extension", chan->language); /* "extension" */
- if (res)
- break;
- if ((res = ast_readstring(chan, username, sizeof(username) - 1, 2000, 10000, "#") < 0))
- break;
+
+ int use_directory = 0;
+ if( directory_forward ) {
+ int done = 0;
+ int retries = 0;
+ cmd=0;
+ while((cmd >= 0) && !done ){
+ if (cmd)
+ retries = 0;
+ switch (cmd) {
+ case '1':
+ use_directory = 0;
+ done = 1;
+ break;
+ case '2':
+ use_directory = 1;
+ done=1;
+ break;
+ case '*':
+ cmd = 't';
+ done = 1;
+ break;
+ default:
+ /* Press 1 to enter an extension press 2 to use the directory */
+ cmd = ast_play_and_wait(chan,"vm-forward");
+ if (!cmd)
+ cmd = ast_waitfordigit(chan,3000);
+ if (!cmd)
+ retries++;
+ if (retries > 3)
+ {
+ cmd = 't';
+ done = 1;
+ }
+
+ }
+ }
+ if( cmd<0 || cmd=='t' )
+ break;
+ }
+
+ if( use_directory ) {
+ /* use app_directory */
+
+ char old_context[sizeof(chan->context)];
+ char old_exten[sizeof(chan->exten)];
+ int old_priority;
+ struct ast_app* app;
+
+
+ app = pbx_findapp("Directory");
+ if (app) {
+ /* make mackup copies */
+ memcpy(old_context, chan->context, sizeof(chan->context));
+ memcpy(old_exten, chan->exten, sizeof(chan->exten));
+ old_priority = chan->priority;
+
+ /* call the the Directory, changes the channel */
+ res = pbx_exec(chan, app, ((context)?context:chan->context), 1);
+
+ strncpy(username, chan->exten, sizeof(username)-1);
+
+ /* restore the old context, exten, and priority */
+ memcpy(chan->context, old_context, sizeof(chan->context));
+ memcpy(chan->exten, old_exten, sizeof(chan->exten));
+ chan->priority = old_priority;
+
+ } else {
+ ast_log(LOG_WARNING, "Could not find the Directory application, disabling directory_forward\n");
+ directory_forward = 0;
+ }
+ } else {
+ /* Ask for an extension */
+ res = ast_streamfile(chan, "vm-extension", chan->language); /* "extension" */
+ if (res)
+ break;
+ if ((res = ast_readstring(chan, username, sizeof(username) - 1, 2000, 10000, "#") < 0))
+ break;
+ }
+
/* start all over if no username */
if (ast_strlen_zero(username))
continue;
@@ -4150,6 +4226,7 @@
char *astsaydurationinfo;
char *astsaydurationminfo;
char *silencestr;
+ char *astdirfwd;
char *thresholdstr;
char *fmt;
char *astemail;
@@ -4382,6 +4459,10 @@
exitcontext[0] = '\0';
}
+ directory_forward = 0;
+ if (!(astdirfwd = ast_variable_retrieve(cfg, "general", "usedirectory")))
+ astdirfwd = "no";
+ directory_forward = ast_true(astdirfwd);
cat = ast_category_browse(cfg, NULL);
while (cat) {
More information about the svn-commits
mailing list