summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-05-10 13:18:12 +0000
committerMark Spencer <markster@digium.com>2004-05-10 13:18:12 +0000
commit230eb50e96595cf584b0a50e97fa042c8117e9c4 (patch)
treeb5749e2e2d073042842d089978b663bfdf43bf00
parent1bc23d416ce49d401cf20619006859f5b04b851f (diff)
Set mimetype to lower case (bug #1597)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2942 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xapps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 107ac6ffa..8bae30c90 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);
}