I am getting interesting rejections from my clients mail server when sending a mail with indy-10's tidMessage component saying:

550 Rejected: Message does not contain a Message-ID

I get this even when using indy's own demo app

http://www.indyproject.org/DemoDownloads/Indy_10_MailClient.zip

what do I do to fix this. thanks!

link|improve this question

60% accept rate
They are not RFC2822 compliant: (3.6.4) "Though optional, every message SHOULD have a "Message-ID:" field" – user160694 Dec 21 '10 at 10:07
Also, are you delivering directly to the mail server with a idSMTP component? AFAIK most MTA add a message-id themselves, it is easier to ensure its uniqueness there than from SMTP clients. – user160694 Dec 21 '10 at 10:11
feedback

2 Answers

up vote 4 down vote accepted

TIdMessage in Indy 10 intentionally omits the 'Message-Id' header when encoding an email to a socket or TStream. You will have to use the TIdMessage.ExtraHeaders property, eg:

IdMessage1.MsgId := ...';
IdMessage.ExtraHeaders.Values['Message-Id'] := IdMessage1.MsgId;
link|improve this answer
feedback

It works with Indy9, maybe things haven't cahnged too much in 10:

    procedure AddMsgID(AMsg: TIdMessage);
    var
      id: AnsiString;
    begin
      id := GenerateUniqueMsgID;
      AMsg.MsgId := id;
      AMsg.AddHeader('Message-ID=' + id);
      // AMsg.ExtraHeaders.Values['Message-ID'] := id;
    end; // AddMsgID
link|improve this answer
You do not need to use AddHeader() and ExtraHeaders together. Use one or the other, not both. – Remy Lebeau Dec 21 '10 at 10:03
OK. Commented ExtraHeaders out. – Michał Niklas Dec 21 '10 at 11:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.