Matthew S Elmore wrote: > I am having a problem getting a webmail package (InstantWebMail) > to work properly under OpenBSD 3.7 in the chroot. It is a simple > PHP application that connects directly to a POP server. > Everything is installed from packages. > > When it tries to connect to the server, it outputs this error: > > fsockopen(): php_network_getaddresses: getaddrinfo failed: > non-recoverable failure in name resolution > > I cannot tell what resource it is trying to access.
man getaddrinfo tells you what that function does. There is an error in the name resolution. You are in a chroot I bet you have to copy /etc/resolv.conf to the chroot :-) # Han