Jump to content

magic2000

Members
  • Content Count

    1
  • Joined

  • Last visited

Posts posted by magic2000


  1. I want to report a problem that will occur if you sent an email with an attachment (ICS v8.68).
    In my opinion, the Content-Transfer-Encoding should be "8bit"
    Some mail client handle this per "autocorrection", some clients do not.
     

    ...
    This is a multipart MIME message.
    
    --= Multipart Boundary 0526231338
    Content-Type: text/plain; charset="windows-1252"
    Content-Transfer-Encoding: 7bit
    
    asdfÄÖÄ
    

    ...

     

    Here is "my" fix for this, I think there will be no side effects.
    Unfortunately, it can not be handeled by trigger events.

     

    OverByteIcsSmtpProt.pas

    ...

    function TSmtpMessageText.SetText(

    ...

        else begin
            FWrapText         := FALSE;
            FTransferEncoding := smtpEnc8bit; //instead of  smptEnc7bit
            FCurrentIdx       := 0;
        end;
    ...

×