home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / bos225b2.zip / ftpusers.aut < prev    next >
Text File  |  1999-08-31  |  2KB  |  53 lines

  1. #
  2. #   ftpusers.aut - FTP users file for XITAMI
  3. #
  4. #   Each section [Xxxx] defines a user who can connect to the FTP service.
  5. #   The user name is not case sensitive.  Possible options for a user are:
  6. #
  7. #   access=(G|P|U|D|M|R|*)...   Permissions: get/put/del/upload/mkdir/rmdir
  8. #   password=(-|*|""|text)      * = anonymous; - = disabled; "" = none
  9. #   root=directory              With leading '/' is absolute path; "" is
  10. #                               main ftproot directory.
  11. #   aliases=1|0                 Has access to aliases?  By default 1 if
  12. #                               root="", else defaults to 0.  Note: this
  13. #                               command is not currently implemented.
  14. #   use-quotas=1|0              User is subject to quotas.  By default, 0.
  15. #   soft-quota=n                Above this, user gets error messages
  16. #   hard-quota=n                Above this, new uploads are forbidden
  17. #   pipe=pipename               Throttle pipe name, if wanted
  18. #
  19. #   NOTE: do not modify this file except for testing.  When you re-install
  20. #   Xitami, this file may be replaced.  Instead, change the ftp:user-file
  21. #   option and copy this file.
  22. #
  23. #*END
  24.  
  25. [Admin]
  26.     access=GPDMR
  27.     password=-
  28.     root=""
  29.     use-Quotas=0                        #   Enforce quotas per user
  30.  
  31. [Anonymous]
  32.     access=G
  33.     password=*
  34.     root=pub
  35.  
  36. [Ftp]
  37.     access=G
  38.     password=*
  39.     root=pub
  40.  
  41. [Guest]
  42.     access=G
  43.     password=""
  44.     root=guest
  45.  
  46. [Upload]
  47.     access=P
  48.     password=upload
  49.     root=upload
  50.     use-quotas=1
  51.     soft-quota=4.0                     #   Warnings above 4 Mbytes
  52.     hard-quota=5.0                     #   Blocks above 5 Mbytes
  53.