home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / wu-ftpd-2.4.2b13-MIHS / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-03  |  1.3 KB  |  77 lines

  1. /* 
  2.  * Top level config file... you'll probably not need to modify any of this.
  3.  * $Id: config.h,v 1.5 1997/03/01 05:13:48 sob Exp $
  4.  * In the future, a lot more definable features will be here (and this
  5.  * will all make sense...)
  6.  */
  7.  
  8. /*
  9.  * allow "upload" keyword in ftpaccess
  10.  */
  11.  
  12. #define UPLOAD
  13.  
  14. /*
  15.  * allow "overwrite" keyword in ftpaccess.
  16.  */
  17.  
  18. #define OVERWRITE
  19.  
  20. /*
  21.  * allow "allow/deny" for individual users.
  22.  */
  23.  
  24. #define HOST_ACCESS
  25.  
  26. /*
  27.  * log failed login attempts
  28.  */
  29.  
  30. #define LOG_FAILED
  31.  
  32. /*
  33.  * log login attempts that fail because of class connection
  34.  * limits.  Busy servers may want to prevent this logging
  35.  * since it can fill up the log file and put a high load on
  36.  * syslog.
  37.  */
  38. #define LOG_TOOMANY
  39.  
  40. /*
  41.  * allow use of private file.  (for site group and site gpass)
  42.  */
  43.  
  44. #undef NO_PRIVATE
  45.  
  46. /*
  47.  * Try once more on failed DNS lookups (to allow far away connections 
  48.  * which might resolve slowly)
  49.  */
  50.  
  51. #define    DNS_TRYAGAIN
  52.  
  53. /*
  54.  * ANON_ONLY 
  55.  * Permit only anonymous logins... disables all other type
  56.  * See README-2.4-HOBBIT for more information on this option.
  57.  */
  58.  
  59. #undef ANON_ONLY
  60.  
  61. /*
  62.  * PARANOID
  63.  * Disable "questionable" functions
  64.  * See README-2.4-HOBBIT for more information on this option.
  65.  */
  66.  
  67. #undef PARANOID
  68.  
  69. /*
  70.  * SKEY
  71.  * Add SKEY support -- REQUIRES SKEY libraries
  72.  * See README-2.4-HOBBIT for more information on this option.
  73.  */
  74.  
  75. #undef SKEY
  76.  
  77.