README
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:3k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. The contrib/ directory contains third-party scripts, binaries and proftpd
  2. modules.  Such found here are completely unsupported by the proftpd team,
  3. have not been tested and may or may not work as documented.  In other
  4. words, use at your own risk.
  5. Contents:
  6. -=-=-=-=-
  7. xferstats.holger-preiss (BSD license, I think)
  8. A port of the infamous wu-ftpd xferlog perl analysis script,
  9. w/ bug fixes and some modifications.  Useful for analyzing
  10. your /var/log/xferlog files.  See xferlog(5).
  11. mod_read.c (License unknown - jan.menzel@gmx.de)
  12. A 3rd party module which implements a new configuration directive,
  13. "DisplayReadme."  The directive can be used to display a list
  14. of "readme" files, including their last modification date.
  15. See contrib/mod_readme.c for details.
  16. mod_pam.c (GPL license - macgyver@tos.net)
  17.         A 3rd party module which implements PAM (Pluggable Authentication
  18. Modules) support for proftpd.  An additional directive,
  19. AuthPAMAuthoritative, is available when using this module, which
  20. controls whether the authentication provided by PAM is absolutely
  21. authoritative over logins, or whether proftpd should try other
  22. authentications methods.
  23. To build with mod_pam, simply:
  24. ./configure --with-modules=mod_pam
  25. mod_ratio.c (GPL license)
  26. A 3rd party module (distributed w/ the debian proftpd package)
  27. which implements file/byte ratios in proftpd.  To install,
  28. run:
  29. ./configure --with-modules=mod_ratio
  30. From the top-level source directory.  See the comments
  31. at the top of mod_ratio.c for add'l directives and usage.
  32. mod_linuxprivs.c (GPL license)
  33. This module takes advantage of current Linux development kernel's
  34. (2.1.x) POSIX.1e security model enhancements (consisting of
  35. capabilities and capability sets at the moment).  Use of this
  36. module _greatly_ enhances security (for one thing, it makes
  37. escaping from a chroot'd jail next to _impossible_).  This
  38. module requires Linux kernel version 2.1.104 or newer.
  39. A modified version of the libcap library is included (see below)
  40. and automagically built when you include this module in your
  41. proftpd build.  Tested under Linux 2.1.122.  To build simply:
  42. ./configure --with-modules=mod_linuxprivs
  43. For detailed information see README.linux-privs
  44. libcap (Unknown license, probably GPL)
  45. This library provides the interface between mod_linuxprivs
  46. (above) and the capability syscalls in Linux 2.1.  YOU DO
  47. NOT NEED TO BUILD THIS LIBRARY.  If you include mod_linuxprivs
  48. in your proftpd build, running 'make' from the top-level directory
  49. will automatically build libcap and link it in.