RE: [exim] smtp_active_hostname Use

Pàgina inicial
Delete this message
Reply to this message
Autor: Mark Smith
Data:  
A: exim-users
Assumpte: 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