2008-11-01 17:32:06 -04:00
|
|
|
|
2009-12-14 21:50:53 -05:00
|
|
|
package com.fsck.k9.mail.internet;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
2009-12-14 21:50:53 -05:00
|
|
|
import com.fsck.k9.mail.Body;
|
|
|
|
import com.fsck.k9.mail.BodyPart;
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
import com.fsck.k9.mail.CompositeBody;
|
2009-12-14 21:50:53 -05:00
|
|
|
import com.fsck.k9.mail.MessagingException;
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
import com.fsck.k9.mail.Multipart;
|
2009-12-09 22:16:42 -05:00
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
import java.io.BufferedWriter;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.io.OutputStreamWriter;
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
import org.apache.james.mime4j.util.MimeUtil;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO this is a close approximation of Message, need to update along with
|
|
|
|
* Message.
|
|
|
|
*/
|
2011-02-06 17:09:48 -05:00
|
|
|
public class MimeBodyPart extends BodyPart {
|
2014-09-22 15:52:59 -04:00
|
|
|
private final MimeHeader mHeader = new MimeHeader();
|
|
|
|
private Body mBody;
|
2009-11-24 19:40:29 -05:00
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public MimeBodyPart() throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
this(null);
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public MimeBodyPart(Body body) throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
this(body, null);
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public MimeBodyPart(Body body, String mimeType) throws MessagingException {
|
|
|
|
if (mimeType != null) {
|
2009-09-26 18:47:13 -04:00
|
|
|
addHeader(MimeHeader.HEADER_CONTENT_TYPE, mimeType);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
setBody(body);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
private String getFirstHeader(String name) {
|
2008-11-01 17:32:06 -04:00
|
|
|
return mHeader.getFirstHeader(name);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void addHeader(String name, String value) throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
mHeader.addHeader(name, value);
|
|
|
|
}
|
|
|
|
|
2014-11-13 16:40:58 -05:00
|
|
|
@Override
|
|
|
|
public void addRawHeader(String name, String raw) {
|
|
|
|
mHeader.addRawHeader(name, raw);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
public void setHeader(String name, String value) {
|
2008-11-01 17:32:06 -04:00
|
|
|
mHeader.setHeader(name, value);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public String[] getHeader(String name) throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
return mHeader.getHeader(name);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void removeHeader(String name) throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
mHeader.removeHeader(name);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public Body getBody() {
|
2008-11-01 17:32:06 -04:00
|
|
|
return mBody;
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void setBody(Body body) throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
this.mBody = body;
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
if (body instanceof Multipart) {
|
|
|
|
Multipart multipart = ((Multipart)body);
|
2008-11-01 17:32:06 -04:00
|
|
|
multipart.setParent(this);
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
String type = multipart.getContentType();
|
|
|
|
setHeader(MimeHeader.HEADER_CONTENT_TYPE, type);
|
|
|
|
if ("multipart/signed".equalsIgnoreCase(type)) {
|
|
|
|
setEncoding(MimeUtil.ENC_7BIT);
|
|
|
|
} else {
|
|
|
|
setEncoding(MimeUtil.ENC_8BIT);
|
|
|
|
}
|
2011-02-06 17:09:48 -05:00
|
|
|
} else if (body instanceof TextBody) {
|
2013-09-02 19:56:59 -04:00
|
|
|
String contentType = String.format("%s;\r\n charset=utf-8", getMimeType());
|
2008-11-01 17:32:06 -04:00
|
|
|
String name = MimeUtility.getHeaderParameter(getContentType(), "name");
|
2011-02-06 17:09:48 -05:00
|
|
|
if (name != null) {
|
2013-09-02 19:56:59 -04:00
|
|
|
contentType += String.format(";\r\n name=\"%s\"", name);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
setHeader(MimeHeader.HEADER_CONTENT_TYPE, contentType);
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
setEncoding(MimeUtil.ENC_8BIT);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
@Override
|
|
|
|
public void setEncoding(String encoding) throws MessagingException {
|
|
|
|
if (mBody != null) {
|
|
|
|
mBody.setEncoding(encoding);
|
|
|
|
}
|
|
|
|
setHeader(MimeHeader.HEADER_CONTENT_TRANSFER_ENCODING, encoding);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public String getContentType() throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
String contentType = getFirstHeader(MimeHeader.HEADER_CONTENT_TYPE);
|
2011-06-16 22:13:32 -04:00
|
|
|
return (contentType == null) ? "text/plain" : contentType;
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public String getDisposition() throws MessagingException {
|
2011-06-16 22:13:32 -04:00
|
|
|
return getFirstHeader(MimeHeader.HEADER_CONTENT_DISPOSITION);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public String getContentId() throws MessagingException {
|
2010-07-11 09:44:16 -04:00
|
|
|
String contentId = getFirstHeader(MimeHeader.HEADER_CONTENT_ID);
|
2011-02-06 17:09:48 -05:00
|
|
|
if (contentId == null) {
|
2010-07-11 09:44:16 -04:00
|
|
|
return null;
|
|
|
|
}
|
2011-06-16 22:13:32 -04:00
|
|
|
|
|
|
|
int first = contentId.indexOf('<');
|
|
|
|
int last = contentId.lastIndexOf('>');
|
|
|
|
|
|
|
|
return (first != -1 && last != -1) ?
|
2011-07-02 15:18:43 -04:00
|
|
|
contentId.substring(first + 1, last) :
|
|
|
|
contentId;
|
2010-07-11 09:44:16 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public String getMimeType() throws MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
return MimeUtility.getHeaderParameter(getContentType(), null);
|
|
|
|
}
|
|
|
|
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public boolean isMimeType(String mimeType) throws MessagingException {
|
2013-09-02 18:43:51 -04:00
|
|
|
return getMimeType().equalsIgnoreCase(mimeType);
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write the MimeMessage out in MIME format.
|
|
|
|
*/
|
2014-09-22 15:52:59 -04:00
|
|
|
@Override
|
2011-02-06 17:09:48 -05:00
|
|
|
public void writeTo(OutputStream out) throws IOException, MessagingException {
|
2008-11-01 17:32:06 -04:00
|
|
|
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
|
|
|
|
mHeader.writeTo(out);
|
|
|
|
writer.write("\r\n");
|
|
|
|
writer.flush();
|
2011-02-06 17:09:48 -05:00
|
|
|
if (mBody != null) {
|
2008-11-01 17:32:06 -04:00
|
|
|
mBody.writeTo(out);
|
|
|
|
}
|
|
|
|
}
|
Recursively convert attachments of type message/rfc822 to 7bit if necessary.
The preceding commit resulted in attachments of type message/rfc822 being
sent with 8bit encoding even when the SMTP server did not support
8BITMIME. This commit assures that messages will be converted to 7bit
when necessary.
A new interface CompositeBody was created that extends Body, and classes
Message and Multipart were changed from implementing Body to
CompositeBody. Additional classes BinaryTempFileMessageBody and
LocalAttachmentMessageBody were created (by extending BinaryTempFileBody
and LocalAttachmentBody, respectively), and they too implement
CompositeBody.
A CompositeBody is a Body containing a composite-type that can contain
subparts that may require recursive processing when converting from 8bit
to 7bit. The Part to which a CompositeBody belongs is only permitted to
use 8bit or 7bit encoding for the CompositeBody.
Previously, a Message was created so that it was 7bit clean by default
(even though that meant base64 encoding all attachments, including
messages). Then, if the SMTP server supported 8BITMIME,
Message.setEncoding("8bit") was called so that bodies of type TextBody
would been transmitted using 8bit encoding rather than quoted-printable.
Now, messages are created with 8bit encoding by default. Then, if the
SMTP server does not support 8BITMIME, Message.setUsing7bitTransport is
called to recursively convert the message and its subparts to 7bit. The
method setUsing7bitTransport was added to the interfaces Part and
CompositeBody.
setEncoding no longer iterates over parts in Multipart. That task belongs
to setUsing7bitTransport, which may in turn call setEncoding on the parts.
MimeUtility.getEncodingforType was created as a helper function for
choosing a default encoding that should be used for a given MIME type when
an attachment is added to a message (either while composing or when
retrieving from LocalStore).
setEncoding was implemented in MimeBodyPart to assure that the encoding
set in the Part's headers was the same as set for the Part's Body. (The
method already existed in MimeMessage, which has similarities with
MimeBodyPart.)
MimeMessage.parse(InputStream in, boolean recurse) was implemented so that
the parser could be told to recursively process nested messages read from
the InputStream, thus giving access to all subparts at any level that may
need to be converted from 8bit to 7bit.
2013-09-02 23:49:28 -04:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setUsing7bitTransport() throws MessagingException {
|
|
|
|
String type = getFirstHeader(MimeHeader.HEADER_CONTENT_TYPE);
|
|
|
|
/*
|
|
|
|
* We don't trust that a multipart/* will properly have an 8bit encoding
|
|
|
|
* header if any of its subparts are 8bit, so we automatically recurse
|
|
|
|
* (as long as its not multipart/signed).
|
|
|
|
*/
|
|
|
|
if (mBody instanceof CompositeBody
|
|
|
|
&& !"multipart/signed".equalsIgnoreCase(type)) {
|
|
|
|
setEncoding(MimeUtil.ENC_7BIT);
|
|
|
|
// recurse
|
|
|
|
((CompositeBody) mBody).setUsing7bitTransport();
|
|
|
|
} else if (!MimeUtil.ENC_8BIT
|
|
|
|
.equalsIgnoreCase(getFirstHeader(MimeHeader.HEADER_CONTENT_TRANSFER_ENCODING))) {
|
|
|
|
return;
|
|
|
|
} else if (type != null
|
|
|
|
&& (type.equalsIgnoreCase("multipart/signed") || type
|
|
|
|
.toLowerCase(Locale.US).startsWith("message/"))) {
|
|
|
|
/*
|
|
|
|
* This shouldn't happen. In any case, it would be wrong to convert
|
|
|
|
* them to some other encoding for 7bit transport.
|
|
|
|
*
|
|
|
|
* RFC 1847 says multipart/signed must be 7bit. It also says their
|
|
|
|
* bodies must be treated as opaque, so we must not change the
|
|
|
|
* encoding.
|
|
|
|
*
|
|
|
|
* We've dealt with (CompositeBody) type message/rfc822 above. Here
|
|
|
|
* we must deal with all other message/* types. RFC 2045 says
|
|
|
|
* message/* can only be 7bit or 8bit. RFC 2046 says unknown
|
|
|
|
* message/* types must be treated as application/octet-stream,
|
|
|
|
* which means we can't recurse into them. It also says that
|
|
|
|
* existing subtypes message/partial and message/external must only
|
|
|
|
* be 7bit, and that future subtypes "should be" 7bit.
|
|
|
|
*/
|
|
|
|
throw new MessagingException(
|
|
|
|
"Unable to convert 8bit body part to 7bit");
|
|
|
|
} else {
|
|
|
|
setEncoding(MimeUtil.ENC_QUOTED_PRINTABLE);
|
|
|
|
}
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|