--- orig-app_voicemail.c 2009-04-22 14:06:29.000000000 -0400 +++ app_voicemail.c 2009-04-22 14:08:38.000000000 -0400 @@ -139,7 +139,7 @@ static int init_mailstream(struct vm_state *vms, int box); static void write_file(char *filename, char *buffer, unsigned long len); static char *get_header_by_tag(char *header, char *tag, char *buf, size_t len); -static void vm_imap_delete(int msgnum, struct ast_vm_user *vmu); +static void vm_imap_delete(char *file, int msgnum, struct ast_vm_user *vmu); static char *get_user_by_mailbox(char *mailbox, char *buf, size_t len); static struct vm_state *get_vm_state_by_imapuser(const char *user, int interactive); static struct vm_state *get_vm_state_by_mailbox(const char *mailbox, int interactive); @@ -445,7 +445,7 @@ #define RETRIEVE(a,b,c,d) imap_retrieve_file(a,b,c,d) #define RENAME(a,b,c,d,e,f,g,h) (rename_file(g,h)); #define COPY(a,b,c,d,e,f,g,h) (copy_file(g,h)); -#define DELETE(a,b,c,d) (vm_imap_delete(b,d)) +#define DELETE(a,b,c,d) (vm_imap_delete(a,b,d)) #else #define RETRIEVE(a,b,c,d) #define DISPOSE(a,b) @@ -1125,7 +1125,7 @@ /* All IMAP-specific functions should go in this block. This * keeps them from being spread out all over the code */ #ifdef IMAP_STORAGE -static void vm_imap_delete(int msgnum, struct ast_vm_user *vmu) +static void vm_imap_delete(char *file, int msgnum, struct ast_vm_user *vmu) { char arg[10]; struct vm_state *vms; @@ -1133,6 +1133,7 @@ /* Greetings aren't stored in IMAP, so we can't delete them there */ if (msgnum < 0) { + ast_filedelete(file, NULL); return; }