aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-10 18:42:22 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-10 18:42:44 -0700
commit2b4fee67d6a34e87b5685a739740ccdacc91020e (patch)
treedcaa49cee011c5e2c7af1374dd8f753155096093 /src/core/rfc822
parent3f350cce0c07a4d532337b6e3e912f536dd57525 (diff)
Cleanup.
Diffstat (limited to 'src/core/rfc822')
-rw-r--r--src/core/rfc822/MCMessageBuilder.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/rfc822/MCMessageBuilder.cc b/src/core/rfc822/MCMessageBuilder.cc
index 01a4aec6..f8fe0064 100644
--- a/src/core/rfc822/MCMessageBuilder.cc
+++ b/src/core/rfc822/MCMessageBuilder.cc
@@ -249,19 +249,19 @@ static struct mailmime * mime_from_attachment(Attachment * att)
return NULL;
}
else if (att->isInlineAttachment() && att->mimeType()->lowercaseString()->isEqual(MCSTR("text/plain"))) {
- mime = get_plain_text_part(MMCUTF8(att->mimeType()), MMCUTF8(att->charset()),
- MMCUTF8(att->contentID()),
+ mime = get_plain_text_part(MCUTF8(att->mimeType()), MCUTF8(att->charset()),
+ MCUTF8(att->contentID()),
data->bytes(), data->length());
}
else if (att->isInlineAttachment() && att->mimeType()->lowercaseString()->hasPrefix(MCSTR("text/"))) {
- mime = get_other_text_part(MMCUTF8(att->mimeType()), MMCUTF8(att->charset()),
- MMCUTF8(att->contentID()),
+ mime = get_other_text_part(MCUTF8(att->mimeType()), MCUTF8(att->charset()),
+ MCUTF8(att->contentID()),
data->bytes(), data->length());
}
else {
mime = get_file_part(att->filename()->encodedMIMEHeaderValue()->bytes(),
- MMCUTF8(att->mimeType()), att->isInlineAttachment(),
- MMCUTF8(att->contentID()),
+ MCUTF8(att->mimeType()), att->isInlineAttachment(),
+ MCUTF8(att->contentID()),
data->bytes(), data->length());
}
return mime;
@@ -632,7 +632,7 @@ Data * MessageBuilder::dataAndFilterBcc(bool filterBcc)
htmlAttachment = Attachment::attachmentWithHTMLString(htmlBody());
htmlPart = multipart_related_from_attachments(htmlAttachment, mRelatedAttachments,
- MMCUTF8(mBoundaryPrefix));
+ MCUTF8(mBoundaryPrefix));
}
if (textBody() != NULL) {
@@ -649,7 +649,7 @@ Data * MessageBuilder::dataAndFilterBcc(bool filterBcc)
}
if ((textPart != NULL) && (htmlPart != NULL)) {
- altPart = get_multipart_alternative(MMCUTF8(mBoundaryPrefix));
+ altPart = get_multipart_alternative(MCUTF8(mBoundaryPrefix));
mailmime_smart_add_part(altPart, textPart);
mailmime_smart_add_part(altPart, htmlPart);
mainPart = altPart;
@@ -671,7 +671,7 @@ Data * MessageBuilder::dataAndFilterBcc(bool filterBcc)
mailmime_set_imf_fields(mime, fields);
if (mainPart != NULL) {
- add_attachment(mime, mainPart, MMCUTF8(mBoundaryPrefix));
+ add_attachment(mime, mainPart, MCUTF8(mBoundaryPrefix));
}
if (attachments() != NULL) {
@@ -681,7 +681,7 @@ Data * MessageBuilder::dataAndFilterBcc(bool filterBcc)
attachment = (Attachment *) attachments()->objectAtIndex(i);
submime = mime_from_attachment(attachment);
- add_attachment(mime, submime, MMCUTF8(mBoundaryPrefix));
+ add_attachment(mime, submime, MCUTF8(mBoundaryPrefix));
}
}