1

我正在做一个项目,我正在构建自己的 SMTP 服务器。(请不要问为什么或向我提供 Postfix 之类的东西,我有我的理由)。

它大部分工作正常,除了 Outlook,我从 Outlook 编码的数据的编码似乎存在一些问题。

我不断收到如下内容:

<html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =

代替:

<html xmlns:v="urn:schemas-microsoft-com:vml" =
xmlns:o="urn:schemas-microsoft-com:office:office" =
xmlns:w="urn:schemas-microsoft-com:office:word" =

请注意,有效内容上没有 3D。

我有一个函数可以监听 SMTP 数据的套接字,如下所示:

if (stream.CanRead)
                {

                    byte[] serverData = new byte[1024];
                    StringBuilder stringBuilder = new StringBuilder();
                    int numberOfBytesRead = 0;
                    do
                    {
                        numberOfBytesRead = stream.Read(serverData, 0, serverData.Length);
                        Encoding encoding = Encoding.GetEncoding("UTF-7", new FallbackEncoding(), new FallbackDecoding());
                        stringBuilder.AppendFormat("{0}", encoding.GetString(serverData, 0, numberOfBytesRead));
                    } while (stream.DataAvailable);

                    return stringBuilder.ToString();

在我的 FallbackDecoding 函数中,我有以下代码

class FallbackDecoding : DecoderFallback
    {
        public override int MaxCharCount
        {
            get
            {
                return 1;
            }
        }

        public override DecoderFallbackBuffer CreateFallbackBuffer()
        {
            return new Buffer();
        }

        private class Buffer : DecoderFallbackBuffer
        {
            private int _fallbackIndex;
            private string _fallbackString;

            public override int Remaining
            {
                get
                {
                    return _fallbackString.Length - _fallbackIndex;
                }
            }

            public override bool Fallback(byte[] bytesUnknown, int index)
            {
                byte unknownChar = bytesUnknown[index];
                _fallbackString = Encoding.ASCII.GetString(new[] { (byte)(unknownChar & 127) });
                _fallbackIndex = 0;
                return true;
            }

            public override char GetNextChar()
            {
                if (Remaining > 0)
                {
                    return _fallbackString[_fallbackIndex++];
                }
                else
                {
                    return '\0';
                }
            }

            public override bool MovePrevious()
            {
                if (_fallbackIndex > 0)
                {
                    _fallbackIndex--;
                    return true;
                }
                return false;
            }
        }

由于某种原因,解码器后备类在函数中抛出异常public override bool Fallback。它抛出一个异常,因为bytesunknown数组中只有 1 个项目,但index参数是 128,所以它抛出一个索引超出范围异常,但我不知道为什么。

我尝试将 ASCII 更改为 UTF-7,因为 Outlook 以 7 位发送数据,但它似乎没有任何区别。

由于我收到的电子邮件中的 HTML,当我传递电子邮件时,格式错误,有时我会在电子邮件中收到垃圾。

更新

根据要求提供完整的电子邮件标题

Message-ID: <000d01d0dc52$0c0d4690$2427d3b0$@chrisboard.co.uk>
MIME-Version: 1.0
Content-Type: multipart/alternative;
    boundary="----=_NextPart_000_000E_01D0DC5A.6DD24AD0"
X-Mailer: Microsoft Outlook 15.0
Thread-Index: AdDcUeHbbPyOUTipQ462DEYroR+DWg==
Content-Language: en-gb

This is a multipart message in MIME format.

------=_NextPart_000_000E_01D0DC5A.6DD24AD0
Content-Type: text/plain;
    charset="us-ascii"
Content-Transfer-Encoding: 7bit

This is the content of the message


------=_NextPart_000_000E_01D0DC5A.6DD24AD0
Content-Type: text/html;
    charset="us-ascii"
Content-Transfer-Encoding: quoted-printable

<html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
xmlns=3D"http://www.w3.o
4

1 回答 1

1

带有长行的引用可打印和 ASCII 文本=

html 附件使用quoted-printable encoding进行编码。Quoted-printable 使用以 . 开头的特殊 3 字节序列=。引用的可打印编码==3D. 它是唯一必须编码的可打印 ascii 字符 (33-126)。

行尾的顺便说一句=也是quoted-printable编码的产物。它“打破”了长线。

于 2015-08-24T10:06:26.160 回答