search for: invent_message

Displaying 2 results from an estimated 2 matches for "invent_message".

Did you mean: event_message
2005 Mar 24
1
voicemail problems with CVS-HEAD
...I just do not understand why not. Any help solving this would be much appreciated. Here is the console output. == No one is available to answer at this time (1:0/0/0) -- Executing Voicemail("SIP/4560-4e18", "u4560") Mar 25 04:46:23 WARNING[28472]: app_voicemail.c:1713 invent_message: fn [/var/spool/asterisk/voicemail/default/4560/greet] Mar 25 04:46:23 WARNING[28472]: file.c:480 ast_openstream_full: File en/vm-theperson Mar 25 04:46:23 WARNING[28472]: file.c:485 ast_openstream_full: File vm-theperson Mar 25 04:46:23 WARNING[28472]: file.c:489 ast_openstream_full: File vm-thep...
2004 Apr 08
3
Re: : External access to voicemail
...) > 0) { if (ast_streamfile(chan, prefile, chan->language) > -1) - res = ast_waitstream(chan, "#0"); + res = ast_waitstream(chan, "*#0"); } else { ast_log(LOG_DEBUG, "%s doesn't exist, doing what we can\n", prefile); res = invent_message(chan, vmu->context, ext, busy, ecodes); @@ -1138,6 +1138,10 @@ silent = 1; res = 0; } + if (res == '*') { /*break out to main vm*/ + free_user(vmu); + return(100); + } if (!res && !silent) { res = ast_streamfile(chan, INTRO, chan->language); if (!re...