How can I apply different header_checks
for incoming and outoing mail using postfix?
By default, all header_checks are applied to both incoming and outgoing.
How can I apply different header_checks
for incoming and outoing mail using postfix?
By default, all header_checks are applied to both incoming and outgoing.
header_checks
is done bycleanup
so I don't think you can apply it only for incoming or outgoing.smtp_header_checks
is applied only for outgoing mail (smtp client)If there is a mail header which you can use to identify which is incoming and which is outgoing mail, with postfix 3.2 or newer you can short-circuit the header_checks, like:
(but it still gives you only option to match ALL (as before) or to match only incoming or only outgoing mail, and requires relatively new postfix version)
As a better alternative, if you can always receive "outgoing" mail (mail from clients for whom you act as mail relay server) on one port (submission: tcp/587) and incoming mail on tcp/25, you should be able to use
master.cf
to override header_checks for each one, like this:but that won't work if your clients for whom you relay also use tcp/25 as rest of the world. If they do, you could setup alternative port for them and it would work, but feasibility of that depends on your ability to persuade all your users to change their settings.
If you have extra IP to spare, you could also make it mostly transparent for users: let's say you had
smtp.example.org
as both relay server for users and as your MX with IPa.a.a.a
, you could change domain's MX to IPb.b.b.b
, and then use one smtpd server ata.a.a.a
with one set of header checks, and another smtpd server atb.b.b.b
with another set of header checks. This is even easier if you relay only for users from say 192.168.x.x/24 when you could even keep same DNS name and use DNS views to present internal IP for internal clients, and external IP for rest of the world.And third way is so to use postfix FILTER capability instead of
header_check
- instead of simple regexp matching, it will forward whole message to your custom script for processing, which can then easily distinguish between incoming and outgoing mail by inspecting headers, and then do any postprocessing as wanted.If I understand your question correctly, you should be able to do this through the
/etc/postfix/header_checks
file, something like this for the out going mail/^From: "spammer/ REJECT
/^To: [email protected]/ REDIRECT [email protected]
I did this long time ago so dont remember all the details but you can get more info from here DOC
This would allow you to define a action depending on whether mail is incoming or outgoing, I hope this answers your question.