From: Mark Spencer Date: Mon, 10 May 2004 13:18:12 +0000 (+0000) Subject: Set mimetype to lower case (bug #1597) X-Git-Tag: 1.0.0-rc1~504 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=230eb50e96595cf584b0a50e97fa042c8117e9c4;p=thirdparty%2Fasterisk.git Set mimetype to lower case (bug #1597) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2942 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 107ac6ffae..8bae30c90e 100755 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -863,7 +863,7 @@ static int sendmail(char *srcemail, struct ast_vm_user *vmu, int msgnum, char *m /* Something unique. */ snprintf(bound, sizeof(bound), "Boundary=%d%s%d", msgnum, mailbox, getpid()); - fprintf(p, "Content-Type: MULTIPART/MIXED; BOUNDARY=\"%s\"\n\n\n", bound); + fprintf(p, "Content-Type: multipart/mixed; boundary=\"%s\"\n\n\n", bound); fprintf(p, "--%s\n", bound); }