Package: postfix Version: 2.9.3-2.1 Severity: normal Tags: patch Without libresolv in the chroot, remote postfix maps can't be resovled by name. Please add.
Trivial patch for the init included.
diff -u postfix-2.9.3/debian/init.d postfix-2.9.3/debian/init.d --- postfix-2.9.3/debian/init.d +++ postfix-2.9.3/debian/init.d @@ -161,7 +161,7 @@ mkdir -p usr/lib/zoneinfo ln -sf /etc/localtime usr/lib/zoneinfo/localtime - LIBLIST=$(for name in gcc_s nss; do + LIBLIST=$(for name in gcc_s nss resolv; do for f in /lib/*/lib${name}*.so* /lib/lib${name}*.so*; do if [ -f "$f" ]; then echo ${f#/}; fi; done;