On Fri, Mar 02, 2007 at 09:47:03AM +0100, Norbert Tretkowski wrote: > If postfix/root_address is empty, I get a broken aliases file. The > patch below fixes it.
Actually, no it doesn't. > - if [ "$ret" != "none" ] || [ -z "$ret"] ; then > + if [ "$ret" != "none" ] || [ ! -z "$ret"] ; then + if [ "$ret" != "none" ] && [ -n "$ret" ] ; then That fixes it. Will be fixed in 2.3.8-1 lamont -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

