RE: [exim] smtp_active_hostname Use

Top Page
Delete this message
Reply to this message
Author: Mark Smith
Date:  
To: exim-users
Subject: RE: [exim] smtp_active_hostname Use

> just set received_header_text accordingly


Thanks, Matthias.

Ed, you need to add this to your exim.conf:

  received_header_text = Received: \
      ${if def:sender_rcvhost {from $sender_rcvhost\n\t}\
      {${if def:sender_ident {from $sender_ident }}\
      ${if def:sender_helo_name {(helo=$sender_helo_name)\n\t}}}}\
      by $smtp_active_hostname \
      ${if def:received_protocol {with $received_protocol}} \
      ${if def:tls_cipher {($tls_cipher)\n\t}}\
      (Exim $version_number)\n\t\
      id $message_id\
      ${if def:received_for {\n\tfor $received_for}}


- Mark