aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-27 17:36:09 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-27 17:36:09 +0000
commit05441a87196d7111e63afc06748b9cddbd9bcc64 (patch)
tree2cc8f96b340e12201746a7e11388bafd4c05c4e4 /apps
parent74aaeb84094e948f8b85b3d28e09a97c3fe1e46d (diff)
Fix voicemail email attachments. I missed the conversion of one of the line
endings and there was an extra one where it should not have been. (issue #9128) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@56975 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index f80911568..518b9e927 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -1934,7 +1934,7 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in
fprintf(p, "Content-Type: multipart/mixed; boundary=\"%s\"" ENDL ENDL ENDL, bound);
- fprintf(p, "--%s\r\n", bound);
+ fprintf(p, "--%s" ENDL, bound);
}
fprintf(p, "Content-Type: text/plain; charset=%s" ENDL "Content-Transfer-Encoding: 8bit" ENDL ENDL, charset);
if (emailbody) {
@@ -1977,7 +1977,7 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in
if (option_debug > 2)
ast_log(LOG_DEBUG, "VOLGAIN: Stored at: %s.%s - Level: %.4f - Mailbox: %s\n", attach, format, vmu->volgain, mailbox);
}
- fprintf(p, "--%s" ENDL ENDL, bound);
+ fprintf(p, "--%s" ENDL, bound);
fprintf(p, "Content-Type: %s%s; name=\"msg%04d.%s\"" ENDL, ctype, format, msgnum, format);
fprintf(p, "Content-Transfer-Encoding: base64" ENDL);
fprintf(p, "Content-Description: Voicemail sound attachment." ENDL);