On Mon, Aug 06, 2012 at 02:39:10PM +0200, Benny Pedersen wrote:
And my last question WHICH IS NOT LINKED TO MY PREVIOUS QUESTIONS, is
it possible to force postfix to create a _from_ line in an email
before sending it if the client didn't create it ?
From: header is part of body content, thats why sender is to make
sure its right, postfix can only control headers not body content
Postfix will add a missing "From:" header when:
always_add_missing_headers = yes
http://www.postfix.org/postconf.5.html#always_add_missing_headers
(Postfix>= 2.6)
and the client matches:
local_header_rewrite_clients
http://www.postfix.org/postconf.5.html#local_header_rewrite_clients
(Postfix>= 2.2)
/always_add_missing_headers = yes/ works great.
My postfix server is exactly as I needed.
Thanks everyone for your help.