Postfix удалить заголовки (headers)

=====================================================

Thank you for reading this post, don't forget to subscribe!

Но дан­ное пра­ви­ло будет при­ме­нять­ся ко всем вхо­дя­щим и исхо­дя­щим сооб­ще­ни­ям. Если необ­хо­ди­мо попра­вить толь­ко для исхо­дя­щих и толь­ко для одно­го поч­то­во­го ящи­ка, то:

cat /etc/postfix/main.cf | grep smtpd_sender_restrictions
smtpd_sender_restrictions = hash:/etc/postfix/autoreply/recipient

cat /etc/postfix/autoreply/recipient
test@test.ru FILTER deleteheader:

postmap /etc/postfix/autoreply/recipient

cat /etc/postfix/master.cf | grep deleteheader
deleteheader unix - n n - - pipe flags=F user=nobody argv=/etc/postfix/autoreply/rename_subject.py ${recipient} ${sender}

cat /etc/postfix/autoreply/rename_subject.py
[codesyntax lang="php"]

[/codesyntax]

тут мы уда­ля­ем заголовки:
sender
mailto

chmod +x /etc/postfix/autoreply/rename_subject.py

systemctl restart postfix