[asterisk-commits] mmichelson: trunk r99002 - /trunk/apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jan 17 16:22:03 CST 2008
Author: mmichelson
Date: Thu Jan 17 16:22:02 2008
New Revision: 99002
URL: http://svn.digium.com/view/asterisk?view=rev&rev=99002
Log:
Fixing trunk IMAP build
(closes issue #11788)
Reported by: DEA
Patches:
vm-imap-build-fix.txt uploaded by DEA (license 3)
Modified:
trunk/apps/app_voicemail.c
Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=99002&r1=99001&r2=99002
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Thu Jan 17 16:22:02 2008
@@ -3466,7 +3466,7 @@
if (box == 1) return 10;
/* get the real IMAP message number for this message */
snprintf(sequence, sizeof(sequence), "%ld", vms->msgArray[msg]);
- ast_debug(3, "Copying sequence %s to mailbox %s\n",sequence,dbox);
+ ast_debug(3, "Copying sequence %s to mailbox %s\n",sequence,mbox(box));
res = mail_copy(vms->mailstream,sequence,(char *) mbox(box));
if (res == 1) return 0;
return 1;
@@ -5030,11 +5030,6 @@
return -1;
}
- /* Check Quota (here for now to test) */
- mail_parameters(NULL, SET_QUOTA, (void *) mm_parsequota);
- imap_mailbox_name(dbox, sizeof(dbox), vms, box, 1);
- imap_getquotaroot(vms->mailstream, dbox);
-
/* Check Quota */
if (box == 0) {
ast_debug(3, "Mailbox name set to: %s, about to check quotas\n", mbox(box));
More information about the asterisk-commits
mailing list