In a deployment I saw this error:
all relevant MX records point to non-existent hosts
After some research I discovered the ignore_target_hosts configuration option. This was configured in both:
/etc/exim4/conf.d/router/200_exim4-config_primary
/etc/exim4/exim4.conf.template
Since my MX server's A records record resolves to an address in the 10.0.0.0/8 it was being ignored as a viable host. I had to modify both configuration files and reload the service in order to send messages.
Can we add environment variables to allow modifying this configuration option?
In a deployment I saw this error:
After some research I discovered the
ignore_target_hostsconfiguration option. This was configured in both:Since my MX server's A records record resolves to an address in the 10.0.0.0/8 it was being ignored as a viable host. I had to modify both configuration files and reload the service in order to send messages.
Can we add environment variables to allow modifying this configuration option?