transform_8bitmime_content
Name
transform_8bitmime_content — Enable 8BITMIME downconversion when sending mail
Synopsis
transform_8bitmime_content = "no"
transform_8bitmime_content = "ifneeded"
transform_8bitmime_content = "strict"
transform_8bitmime_content = "strip"
Description
When set to ifneeded
, if a message to be sent to a remote MTA contains 8-bit data and the remote MTA did not advertise support for 8BITMIME, then Momentum will strip the 8th bit from the data, as per RFC 1652.
When set to no
, Momentum will send the data as is.
Set to strict
for strict compliance with RFC1652. Do proper Quoted-Printable (QP) encoding of eight bit data, subsequently scanning the re-encoded message for leftover 8 bit characters. If any are found, the message is permanently failed. Setting this option to strip
strips the high bit from all characters in the body, guaranteeing that the data is transferred as 7-bit content. This mode of operation is contrary to that permitted by RFC1652, and its use is discouraged.
Note
This option has no effect on whether Momentum informs the remote MTA that 8BITMIME data is going to be sent, it simply downgrades to 7-bits. Use the Send_8BitMime
to control 8BITMIME notification.
The default value is ifneeded
.
For RFC 1652 compliance you should set send_8bitmime
to ifavailable
and transform_8bitmime_content
to ifneeded
.
Scope
transform_8bitmime_content is valid in the global, binding_group, binding, and domain scopes.