mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-09-04 09:30:55 +00:00
Modify outgoing_mail_header_filters and mail-postfix.sh files to result in the primary hostname, and the public ip of the server showing in the first mail header route instead of unknown and 127.0.0.1. This could help lower the spam score of mail sent from your server to some public mail services.
15 lines
726 B
Plaintext
15 lines
726 B
Plaintext
# Remove the first line of the Received: header. Note that we cannot fully remove the Received: header
|
|
# because OpenDKIM requires that a header be present when signing outbound mail. The first line is
|
|
# where the user's home IP address would be.
|
|
/^\s*Received:[^\n]*(.*)/ REPLACE Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP])$1
|
|
|
|
# Remove other typically private information.
|
|
/^\s*User-Agent:/ IGNORE
|
|
/^\s*X-Enigmail:/ IGNORE
|
|
/^\s*X-Mailer:/ IGNORE
|
|
/^\s*X-Originating-IP:/ IGNORE
|
|
/^\s*X-Pgp-Agent:/ IGNORE
|
|
|
|
# The Mime-Version header can leak the user agent too, e.g. in Mime-Version: 1.0 (Mac OS X Mail 8.1 \(2010.6\)).
|
|
/^\s*(Mime-Version:\s*[0-9\.]+)\s.+/ REPLACE $1
|