Auteur: Jeremy Harris Date: À: exim-users Sujet: Re: [exim] IPv6 lookup issues what am I doing wrong?
On 09/05/2019 09:50, Spencer Marshall via Exim-users wrote: > I have a similar issue with
> tls_certificate = /etc/exim/$received_ip_address.cer
tls_certificate takes a list, and the default list separator
is a colon. If you use an expansion expected to result in
colons, in this case an ipv6 address, you need to change
the separator:
tls_certificate = <; /etc/exim/$received_ip_address.cer
> tls_privatekey = /etc/exim/$received_ip_address.key
> tls_dhparam = /etc/exim/$received_ip_address.dh
> The certificate is found for IPv4 connections, but not IPv6. --
Cheers,
Jeremy