Re: [exim] Making Exim does not include IPs of the original …

Top Page
Delete this message
Reply to this message
Author: Jakob Hirsch
Date:  
To: Alejandro Lengua
CC: Exim-users
Subject: Re: [exim] Making Exim does not include IPs of the original sender....
Alejandro Lengua wrote:

> Is there a way to make EXIM, not include the original IP of the sender?


I use this modified received_header_text on my private server:

received_header_text = Received: \
  ${if !def:authenticated_id \
    {${if def:sender_rcvhost \
      {from $sender_rcvhost\n\t} \
      {${if def:sender_ident {from ${quote_local_part:$sender_ident}
}}${if def:sender_helo_name {(helo=$sender_helo_name)\n\t}}}}\
  }}\
...


One should take care when modifying such tracking information, though.