On Wed, Apr 01, 2015 at 09:57:29PM -0400, Joe M wrote:
> ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-3.1-20150330.tar.gz
>
> I had to comment out these 3 lines to get it to work.
>
> With this change to lines 209-211, the script works fine.
> +# IFS="
> +# "
> +# BACKUP_IFS="$IFS"
Did you per-chance lose the "<SPACE><TAB>" in
IFS="<SPACE><TAB><NEWLINE>"
[
That is:
IFS="
"
]
Commenting out the assignment of BACKUP_IFS is not a good idea.
Defaulting the initial "IFS" is mostly harmless.
--
Viktor.