Internet Direct (Indy) Version 9.0.1 Beta
TIdSMTPGreeting.EHLOReply
SMTP service extentions to be include in the EHLO command response.

property EHLOReply: TStrings;
Description
EHLOReply is a TStrings property that represents one or more lines of text to be sent in response to the SMTP EHLO command verb. EHLO is an alternate form of the SMTP HELO command verb that provides additional information about SMTP service exstensions in the server response.

EHLOReply is used in the TIdSMTPServer.CommandEHLO action handler when the command object contains parameter values.

The default values in EHLOReply are assigned in the Create constructor, and represent the SMTP service extensions availble in the default server implementation. For example:

    250-localhost
    250-AUTH LOGIN
    250 HELP
    

If additional SMTP service extensions are added to the server implementation, their keywords should be added to the lines in EHLOReply.