Sophie

Sophie

distrib > Mandriva > 9.1 > i586 > by-pkgid > c6444a395842d34c2c6142148db140f1 > files > 42

proftpd-1.2.7-1mdk.i586.rpm

# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp>
  User				ftp
  Group				ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias			anonymous ftp

  # Limit the maximum number of anonymous logins
  MaxClients			10

  # Don't make it require a valid password or shell.
  RequireValidShell		off
  AnonRequirePassword		off

  # We want 'welcome.msg' displayed at login, and '.message' displayed
  # in each newly chdired directory.
  DisplayLogin			welcome.msg
  DisplayFirstChdir		.message

  # Limit WRITE everywhere in the anonymous chroot
  <Limit WRITE>
    DenyAll
  </Limit>

</Anonymous>