home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / bos224d6.zip / ftpusers.aut < prev    next >
Text File  |  1999-11-17  |  2KB  |  52 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. #
  18. #   NOTE: do not modify this file except for testing.  When you re-install
  19. #   Xitami, this file may be replaced.  Instead, change the ftp:user-file
  20. #   option and copy this file.
  21. #
  22. #*END
  23.  
  24. [Admin]
  25.     access=GPDMR
  26.     password=-
  27.     root=""
  28.     use-Quotas=0                        #   Enforce quotas per user
  29.  
  30. [Anonymous]
  31.     access=G
  32.     password=*
  33.     root=pub
  34.  
  35. [Ftp]
  36.     access=G
  37.     password=*
  38.     root=pub
  39.  
  40. [Guest]
  41.     access=G
  42.     password=""
  43.     root=guest
  44.  
  45. [Upload]
  46.     access=P
  47.     password=upload
  48.     root=upload
  49.     use-quotas=1
  50.     soft-quota=1.0                     #   Warnings above 4 Mbytes
  51.     hard-quota=2.0                     #   Blocks above 5 Mbytes
  52.