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

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Jakob Hirsch
Fecha:  
A: Alejandro Lengua
Cc: Exim-users
Asunto: 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.