aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-21 00:14:07 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-21 00:14:07 +0000
commitb61a8c1e2757f80342f2721ac11eb7e6649851ed (patch)
tree94c4585be76a11a75f149382d879122b7018f9eb /apps/app_voicemail.c
parentfff5f64a9874fad704435cedfce57e580f8d3d01 (diff)
Merged revisions 55741 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r55741 | file | 2007-02-20 19:11:20 -0500 (Tue, 20 Feb 2007) | 2 lines Better handle dropped IMAP connections. (issue #9054 reported by bsmithurst) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@55748 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 307531fbc..1b1f9fbe5 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2468,6 +2468,7 @@ static int imap_store_file(char *dir, char *mailboxuser, char *mailboxcontext, i
fread(buf, len, 1, p);
((char *)buf)[len] = '\0';
INIT(&str, mail_string, buf, len);
+ init_mailstream(vms, 0);
imap_mailbox_name(mailbox, vms, 0, 1);
if(!mail_append(vms->mailstream, mailbox, &str))
ast_log(LOG_ERROR, "Error while sending the message to %s\n", mailbox);
@@ -2578,12 +2579,10 @@ static int inboxcount(const char *mailbox, int *newmsgs, int *oldmsgs)
}
/* If no mailstream exists yet and even after attempting to initialize it fails, bail out */
- if (!vms_p->mailstream) {
- ret = init_mailstream(vms_p, 0);
- if (!vms_p->mailstream) {
- ast_log (LOG_ERROR,"Houston we have a problem - IMAP mailstream is NULL\n");
- return -1;
- }
+ ret = init_mailstream(vms_p, 0);
+ if (!vms_p->mailstream) {
+ ast_log (LOG_ERROR,"Houston we have a problem - IMAP mailstream is NULL\n");
+ return -1;
}
if (!ret && vms_p->updated == 1) {