> Did you try ``man ports''?
>
> Paying special attention to FETCH_CMD is something that will
> serve you well.
>
> -Dan
Yes, thank you. Did you read my post?
I want to use /usr/bin/ftp
the following patch with "export FTPMODE=noepsv" from [EMAIL PROTECTED]
(THANKS!) does the trick:
-- main.c Fri Nov 10 15:07:00 2006
+++ main.c.new Fri Nov 10 15:10:05 2006
@@ -142,6 +142,10 @@
} else if (strcmp(cp, "auto") == 0) {
passivemode = 1;
activefallback = 1;
+ } else if (strcmp(cp, "noepsv") == 0) {
+ passivemode = 1;
+ epsv4 = 0;
+ activefallback = 0;
} else
warnx("unknown FTPMODE: %s. Using defaults",
cp);
}