Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarto committed Nov 11, 2024
1 parent 279a66b commit 8851372
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

package com.zimbra.cs.service.mail.message.parser;

import com.google.common.base.Charsets;
import com.google.common.collect.ImmutableSet;
import com.zimbra.common.account.ZAttrProvisioning;
import com.zimbra.common.localconfig.LC;
Expand Down Expand Up @@ -697,7 +696,7 @@ private static void attachMessage(MimeMultipart mmp, ItemId iid, String contentI
} else {
mbp.setDataHandler(new DataHandler(new MailboxBlobDataSource(msg.getBlob())));
mbp.setHeader("Content-Type", MimeConstants.CT_MESSAGE_RFC822);
mbp.setHeader("Content-Disposition", Part.ATTACHMENT + ";filename*=UTF-8''" + sanitizeFileName(msg.getSubject() + ".eml\""));
mbp.setHeader("Content-Disposition", Part.ATTACHMENT + ";filename*=UTF-8''" + sanitizeFileName(msg.getSubject() + ".eml"));
}
mbp.setContentID(contentID);
mmp.addBodyPart(mbp);
Expand Down

0 comments on commit 8851372

Please sign in to comment.