1config BR2_PACKAGE_PURE_FTPD 2 bool "pure-ftpd" 3 depends on BR2_USE_MMU # fork() 4 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 5 help 6 Pure-FTPd is a free (BSD), secure, production-quality and 7 standard- conformant FTP server. It doesn't provide useless 8 bells and whistles, but focuses on efficiency and ease of 9 use. It provides simple answers to common needs, plus unique 10 useful features for personal users as well as hosting 11 providers. 12 13 http://www.pureftpd.org 14 15if BR2_PACKAGE_PURE_FTPD 16 17config BR2_PACKAGE_PURE_FTPD_FTPWHO 18 bool "ftpwho" 19 help 20 Enable the pure-ftpd command. Pure-ftpwho shows current 21 Pure-ftpd client sessions. Only the system administrator 22 may run this. Output can be text (default), HTML, XML data 23 and parser-optimized. 24 25config BR2_PACKAGE_PURE_FTPD_QUOTAS 26 bool "quotas" 27 help 28 Enable virtual quotas. With virtual quotas, restrictions can 29 be placed on the maximum number of files a user can store in 30 his account. In addition, restrictions can also be placed on 31 the total size. 32 33config BR2_PACKAGE_PURE_FTPD_UPLOADSCRIPT 34 bool "uploadscript" 35 help 36 Enable pure-upload script. Automatically run an external 37 program after a successful upload. 38 39endif 40