[asterisk-commits] mmichelson: branch group/upenn r101017 - /team/group/upenn/apps/app_voicemail.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 29 15:57:25 CST 2008


Author: mmichelson
Date: Tue Jan 29 15:57:25 2008
New Revision: 101017

URL: http://svn.digium.com/view/asterisk?view=rev&rev=101017
Log:
Backporting the fix for issue 11151 from trunk to the upenn branch.

This fixes the problem of attempting to open the "INBOX" if an INBOX folder
does not exist on the system. Instead, the user-defined imapfolder parameter from
voicemail.conf is used.


Modified:
    team/group/upenn/apps/app_voicemail.c

Modified: team/group/upenn/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/team/group/upenn/apps/app_voicemail.c?view=diff&rev=101017&r1=101016&r2=101017
==============================================================================
--- team/group/upenn/apps/app_voicemail.c (original)
+++ team/group/upenn/apps/app_voicemail.c Tue Jan 29 15:57:25 2008
@@ -4876,7 +4876,7 @@
 	if (delimiter == '\0') {		/* did not probe the server yet */
 		char *cp;
 #include "linkage.c"
-		/* Connect to INBOX first to get folders delimiter */
+		/* Connect to mailbox to get mailstream so we can get delimiter */ 
 		imap_mailbox_name(tmp, sizeof(tmp), vms, 0, 1);
 		stream = mail_open (stream, tmp, debug ? OP_DEBUG : NIL);
 		if (stream == NIL) {




More information about the asterisk-commits mailing list