I am administering a Postfix that uses sender_canonicals to do a rewrite of the header from but I need to disable that option.
I have commented the sender_canonical file but when reloading the configuration I try to send an email and the service fails. #sender_canonical_maps = regexp:/etc/postfix/sender_canonical #local_header_rewrite_clients = static:all I see this: 220 email.domaintest.com ESMTP Postfix 250- <http://250-email.kiusys.com>email.domaintest.com 250-PIPELINING 250-SIZE 153600000 250-VRFY 250-ETRN 250-STARTTLS 250-ENHANCEDSTATUSCODES 250-8BITMIME 250 DSN 250 2.1.0 Ok 250 2.1.5 Ok 354 End data with <CR><LF>.<CR><LF> 451 4.7.1 Service unavailable - try again later 221 2.0.0 Bye this is my config: alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases append_dot_mydomain = no biff = no bounce_queue_lifetime = 5h config_directory = /etc/postfix header_checks = regexp:/etc/postfix/header_checks inet_interfaces = all inet_protocols = ipv4 local_header_rewrite_clients = static:all mailbox_size_limit = 0 maximal_backoff_time = 3h maximal_queue_lifetime = 5h message_size_limit = 153600000 milter_default_action = accept milter_protocol = 2 minimal_backoff_time = 15m mydestination = mail.domaintest.com, localhost.olleros, , localhost myhostname = email.domaintest.com mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 10.10.0.0/16 192.168.22.0/24 10.1.27.0/24 10.1.120.0/24 10.1.20.0/24 10.1.24 .0/24 172.31.32.0/20 10.54.175.0/24 172.16.0.0/24 10.54.0.0/16 172.31.3.98/32 myorigin = /etc/mailname non_smtpd_milters = inet:localhost:12345,inet:localhost:54321 queue_run_delay = 300s readme_directory = no recipient_delimiter = + relayhost = sender_canonical_maps = regexp:/etc/postfix/sender_canonical smtp_tls_policy_maps = hash:/etc/postfix/tls_policy smtp_tls_security_level = may smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache smtpd_banner = $myhostname ESMTP $mail_name smtpd_milters = inet:localhost:12345,inet:localhost:54321 smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem smtpd_tls_exclude_ciphers = "aNULL" smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key smtpd_tls_mandatory_ciphers = medium, high smtpd_tls_mandatory_protocols = TLSv1 smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtpd_use_tls = yes transport_maps = hash:/etc/postfix/transport The idea is not to rewrite more headers, any help in disabling this? Regards,
_______________________________________________ Postfix-users mailing list -- postfix-users@postfix.org To unsubscribe send an email to postfix-users-le...@postfix.org