Tom Hendrikx: > Hi, > > After setting up postfix up on a ipv4/ipv6 dualstack machine I'm seeing > the following issue: connections on 127.0.0.1 (where my content_filter > re-injects mail) are logged as: > > 010-01-13T22:51:07+01:00 meredith-vmail postfix/smtpd[4772]: warning: > 127.0.0.1: address not listed for hostname ip6-localhost
Given the client IP address 127.0.0.1, Postfix gets the name ip6-localhost, but that name does have the address 127.0.0.1. > After some time reading google and debugging this is what I found out: > - /etc/hosts contains the following stuff regarding localhost (in the > specified order): > ::1 ip6-localhost ip6-loopback > 127.0.0.1 localhost And indeed. Name ip6-localhost does not list address 127.0.0.1. Somewhere, you have a mapping from 127.0.0.1 that returns ip6-localhost, and that mapping is screwing things up, because 127.0.0.1 is not listed as an address for ip6-localhost. Wietse