pure-pw.8.in 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .TH "pure-pw" "8" "@VERSION@" "Frank Denis" "Pure-FTPd"
  2. .SH "NAME"
  3. .LP
  4. pure\-pw \- Manage virtual users files for Pure\-FTPd
  5. .SH "SYNTAX"
  6. .LP
  7. pure\-pw useradd login [\-f passwd_file] [\-F puredb_file] \-u uid [\-g gid]
  8. \-D/\-d home_directory [\-c gecos]
  9. [\-t download_bandwidth] [\-T upload_bandwidth]
  10. [\-n max number_of_files] [\-N max_Mbytes]
  11. [\-q upload_ratio] [\-Q download_ratio]
  12. [\-r <allow client host>/<mask>[,<ip>/<mask>]...] [\-R <deny client host>/<mask>[,<ip>/<mask>]...]
  13. [\-i <allow local host>/<mask>[,<ip>/<mask>]...] [\-I <deny local host>/<mask>[,<ip>/<mask>]...]
  14. [\-y <max number of concurrent sessions>]
  15. [\-z <hhmm>\-<hhmm>] [\-m]
  16. .br
  17. pure\-pw usermod login [\-f passwd_file] [\-F puredb_file] [\-u uid] [\-g gid]
  18. \-D/\-d home_directory \-[c gecos]
  19. [\-t download_bandwidth] [\-T upload_bandwidth]
  20. [\-n max_number_of_files] [\-N max_Mbytes]
  21. [\-q upload_ratio] [\-Q download_ratio]
  22. [\-r <allow client host>/<mask>[,<ip>/<mask>]...] [\-R <deny client host>/<mask>[,<ip>/<mask>]...]
  23. [\-i <allow local host>/<mask>[,<ip>/<mask>]...] [\-I <deny local host>/<mask>[,<ip>/<mask>]...]
  24. [\-y <max number of concurrent sessions>]
  25. [\-z <hhmm>\-<hhmm>] [\-m]
  26. .br
  27. pure\-pw userdel login [\-f passwd_file] [\-F puredb_file] [\-m]
  28. .br
  29. pure\-pw passwd login [\-f passwd_file] [\-F puredb_file] [\-m]
  30. .br
  31. pure\-pw show login [\-f passwd_file] [\-m]
  32. .br
  33. pure\-pw mkdb [<puredb_database_file> [\-f passwd_file]] [\-F puredb_file]
  34. .br
  35. pure\-pw list [\-f passwd_file]
  36. .SH "DESCRIPTION"
  37. .LP
  38. Virtual users is a simple mechanism to store a list of users, with their
  39. password, name, uid, directory, etc. It's just like /etc/passwd. But it's
  40. not /etc/passwd. It's a different file, only for FTP.
  41. .br
  42. It means that you can easily create FTP\-only accounts without messing your
  43. system accounts.
  44. .br
  45. Additionnaly, virtual users files can store individual quotas, ratios,
  46. bandwidth, etc. System accounts can't do this.
  47. .br
  48. Thousands of virtual users can share the same system user, as long as they
  49. all are chrooted, and they have their own home directory.
  50. .SH "FILES"
  51. .LP
  52. \fI@CONFDIR@/pureftpd.passwd\fP
  53. .br
  54. \fI@CONFDIR@/pureftpd.pdb\fP
  55. .SH "ENVIRONMENT VARIABLES"
  56. .LP
  57. \fIPURE_PASSWDFILE\fP
  58. If this variable is defined, this is the default value for the text password
  59. file. Without this variable, @CONFDIR@/pureftpd.passwd is assumed.
  60. .br
  61. \fIPURE_DBFILE\fP
  62. If this variable is defined, this is the default value for the PureDB password
  63. file. Without this variable, @CONFDIR@/pureftpd.pdb is assumed.
  64. .SH "EXAMPLES"
  65. .LP
  66. Please read http://download.pureftpd.org/pub/pure-ftpd/doc/README.Virtual\-Users
  67. .SH "AUTHORS"
  68. .LP
  69. Frank DENIS <j at pureftpd dot org>
  70. .SH "SEE ALSO"
  71. .BR "ftp(1)" ,
  72. .BR "pure-ftpd(8)"
  73. .BR "pure-ftpwho(8)"
  74. .BR "pure-mrtginfo(8)"
  75. .BR "pure-uploadscript(8)"
  76. .BR "pure-statsdecode(8)"
  77. .BR "pure-pw(8)"
  78. .BR "pure-quotacheck(8)"
  79. .BR "pure-authd(8)"
  80. .BR "pure-certd(8)"
  81. .BR "RFC 959" ,
  82. .BR "RFC 2228",
  83. .BR "RFC 2389" " and"
  84. .BR "RFC 2428" .