When sending mail through PHP mail() - Postfix adds the following header:
Received: by myhost.mydomain.com (Postfix, from userid 48)
id XXXXXXXXXXX; Sun, 20 Nov 2011 21:22:13 +0100 (CET)
Is there a way to remove the userid part, but keep the rest? So the result becomes (if correct):
Received: by myhost.mydomain.com (Postfix)
id XXXXXXXXXXX; Sun, 20 Nov 2011 21:22:13 +0100 (CET)
Postfix is running on localhost and is only used to send mail from PHP through the mail() function.
A simular question regarding removing the whole header has been asked before, but I can't figure out how to remove the userid part, but keep the rest.