masqmail

diff src/accept.c @ 378:5781ba87df95

Removed ident. This had been discussed on the mailing list in Oct 2011. Ident is hardly useful in typical setups for masqmail. Probably Oliver had used it in his setup; that would make sense. Now, I know of nobody who needs it.
author markus schnalke <meillo@marmaro.de>
date Sat, 14 Jan 2012 21:36:58 +0100
parents 9bc3e47b0222
children aa40710f09fe
line diff
     1.1 --- a/src/accept.c	Sat Jan 14 18:44:48 2012 +0100
     1.2 +++ b/src/accept.c	Sat Jan 14 21:36:58 2012 +0100
     1.3 @@ -375,13 +375,8 @@
     1.4  		/* received from remote */
     1.5  		DEBUG(5) debugf("adding 'Received:' header (5)\n");
     1.6  		hdr = create_header(HEAD_RECEIVED,
     1.7 -#ifdef ENABLE_IDENT
     1.8 -		    "Received: from %s (ident=%s)\n\tby %s with %s (%s %s)\n\tid %s%s; %s\n",
     1.9 -		    msg->received_host, msg->ident ? msg->ident : "unknown",
    1.10 -#else
    1.11  		    "Received: from %s\n\tby %s with %s (%s %s)\n\tid %s%s; %s\n",
    1.12  		    msg->received_host,
    1.13 -#endif
    1.14  		    conf.host_name, prot_names[msg->received_prot], PACKAGE,
    1.15  		    VERSION, msg->uid, for_string ? for_string : "",
    1.16  		    rec_timestamp());