]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix voicemail email attachments. I missed the conversion of one of the line
authorRussell Bryant <russell@russellbryant.com>
Tue, 27 Feb 2007 17:36:09 +0000 (17:36 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 27 Feb 2007 17:36:09 +0000 (17:36 +0000)
endings and there was an extra one where it should not have been.
(issue #9128)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@56975 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index f80911568058c6f70e8d9a240cc8e2e5014734dd..518b9e92772388fff917fc28f1209726dbf1534b 100644 (file)
@@ -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);