MIME Conversion problems since upgrading to 8.5.1

Hello,

I recently upgraded a Domino Server from 8.0.1 to 8.5.1 and since my mail is a spam for some FAI (ex Free)

If my code is :

Set body = DocMailDiffusion.CreateMIMEEntity

Set header = body.CreateHeader(“Content-Type”)

Call header.SetHeaderVal(“multipart/mixed”)

Set header = body.CreateHeader( “MIME-Version” )

Call header.SetHeaderVal( “1.0” )

Set stream = Ns.CreateStream

Call stream.WriteText(“Text of message.”)

Call body.SetContentFromText(stream, “text/plain;charset=UTF-8”, ENC_NONE)

Call stream.Truncate

without ChildEntity I haven’t a problem

But if I generated a mail with “CreateChildEntity” like this

Set body = DocMailDiffusion.CreateMIMEEntity

Set header = body.CreateHeader(“Content-Type”)

Call header.SetHeaderVal(“multipart/mixed”)

Set header = body.CreateHeader( “MIME-Version” )

Call header.SetHeaderVal( “1.0” )

Set stream = Ns.CreateStream

Set child = body.CreateChildEntity

Call stream.WriteText(“Text of message.”)

Call child.SetContentFromText(stream, “text/plain;charset=UTF-8”, ENC_NONE)

Call stream.Truncate

My mail is put in spam detected by my FAI.

If I put this code in an other domino 8.5. it’s the same.

Have you an idea?

Thnaks in advance

sylvain

Subject: Multi mime mail

Hello,

I have the same problem: We generate newsletter as multi mime mail with some graphics. Since we have updated to DOMINO 8.5.1 the graphics are additional shown as attachments.

The header information in the generated mail are now looks like this:

Date: Fri, 1 Oct 2010 01:22:14 +0200

To: uscheunemann@web.de

From: IHK-Aktuell@pfalz.ihk24.de

ReplyTo:

MIME-Version: 1.0

Message-ID: OFD795E9E7.487456AC-ONC12577AE.008060AC@pfalz.ihk24.de

X-MIMETrack: Itemize by Agent Manager on dose04/luz/DE(Release 8.5.1FP4|July 25, 2010) at

01.10.2010 01:22:13,

Serialize by Router on DoSe01/luz/DE(Release 8.5.1FP4|July 25, 2010) at

01.10.2010 01:22:16

MIME-Version: 1.0

MIME-Version: 1.0

Content-Type: multipart/related;

boundary=“==IFJRGLKFGIR13566UHRUHIHD”

In my LotusScript code is no call to

Set hdMimeType = mimeBody.CreateHeader( “MIME-Version” )

Call hdMimeType.SetHeaderVal( “1.0” )

I don’t know why there are the Mime-Version Properties in the generated mail.

It is not a solution to add the call to create this header value.