1 # $NetBSD: ftpd.conf,v 1.1 1998/06/06 01:28:33 lukem Exp $ 2 # 3 # example /etc/ftpd.conf 4 5 # Check PORT command for validity; prevents denial of service attempt. 6 # 7 checkportcmd guest 8 9 # For anonymous connections, when a directory is entered show the contents 10 # of `.message' if it exists, and notify about any files that start 11 # with `README'. 12 # 13 display guest .message 14 notify guest README* 15 16 # Support automatic conversions. 17 # (For anonymous connections, ~ftp/usr/bin should be a symlink to ~ftp/bin, 18 # and gzip and tar should exist in the latter directory.) 19 # 20 conversion all .gz f . /usr/bin/gzip -c %s 21 conversion all .tar df .notar /usr/bin/tar cf - %s 22 conversion all .tar.gz df .notar /usr/bin/tar zcf - %s 23