diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index fbff1eef8b..6842d55ad9 100755 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -862,7 +862,7 @@ static int sendmail(char *srcemail, struct ast_vm_user *vmu, int msgnum, char *m fprintf(p, "MIME-Version: 1.0\n"); if (attach_user_voicemail) { /* Something unique. */ - snprintf(bound, sizeof(bound), "Boundary=%d%s%d", msgnum, mailbox, getpid()); + snprintf(bound, sizeof(bound), "voicemail_%d%s%d", msgnum, mailbox, getpid()); fprintf(p, "Content-Type: multipart/mixed; boundary=\"%s\"\n\n\n", bound);