Weiter Zurück Inhalt

6. Files requesten

Um Files zu requesten kann man das Perl Skript ifreq verwenden, welches sich im Verzeichnis misc/contrib von ifmail befindet. Mit einigen DOS-Request-Prozessoren macht das noch Probleme, da an den Zeilenenden das Linefeed fehlt. Folgender Patch loest dieses Problem:


--- ifreq~      Sat Aug  6 14:41:28 1994
+++ ifreq       Sat Oct  8 12:05:09 1994
@@ -73,7 +73,7 @@
# open the flofile for appending
open(FLOFILE, ">>" . $reqfile) || die "can't open $reqfile";
while (@files) {
-                       print (FLOFILE shift(@files), "\n");
+                       print (FLOFILE shift(@files), "\r\n");
}
close(FLOFILE);


Weiter Zurück Inhalt